We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df3609 commit f15204bCopy full SHA for f15204b
src/ops/sources/postgres.rs
@@ -425,10 +425,6 @@ impl SourceExecutor for PostgresSourceExecutor {
425
if let Some(where_clause) = &self.filter {
426
write!(&mut query, " WHERE {}", where_clause)?;
427
}
428
- // Add ordering by ordinal column if specified
429
- if let Some(ord_schema) = &self.table_schema.ordinal_field_schema {
430
- write!(&mut query, " ORDER BY \"{}\"", ord_schema.schema.name)?;
431
- }
432
433
let stream = try_stream! {
434
let mut rows = sqlx::query(&query).fetch(&self.db_pool);
0 commit comments