diff --git a/integration/rust/tests/integration/timestamp_sorting.rs b/integration/rust/tests/integration/timestamp_sorting.rs
index 591ea1cb1..446e6a730 100644
--- a/integration/rust/tests/integration/timestamp_sorting.rs
+++ b/integration/rust/tests/integration/timestamp_sorting.rs
@@ -120,18 +120,17 @@ async fn test_timestamp_sorting_across_shards() {
.unwrap();
let rows = sharded_conn
- .fetch_all(
- "SELECT id, name, updated_at FROM timestamp_test ORDER BY updated_at DESC NULLS LAST",
- )
+ .fetch_all("SELECT id, name, updated_at FROM timestamp_test ORDER BY updated_at ASC")
.await
.unwrap();
- let last_rows: Vec