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 3463d66 commit 8a27ddbCopy full SHA for 8a27ddb
quickwit/quickwit-search/src/collector.rs
@@ -100,7 +100,7 @@ impl SortingFieldComputer {
100
SortFieldType::U64 => SortValue::U64(sort_value),
101
SortFieldType::I64 => SortValue::I64(i64::from_u64(sort_value)),
102
SortFieldType::F64 => SortValue::F64(f64::from_u64(sort_value)),
103
- SortFieldType::DateTime => SortValue::U64(sort_value),
+ SortFieldType::DateTime => SortValue::I64(i64::from_u64(sort_value)),
104
SortFieldType::Bool => SortValue::Boolean(sort_value == 1u64),
105
}
106
0 commit comments