Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Dec 30, 2024
1 parent 5d5b305 commit 28e556f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e_test/batch/types/timestamp_ns.slt.part
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ select v2, count(*) from t1 group by v2;
2213-01-01 01:01:01.123456789 1
NULL 1

query T rowsort
query T
select * from t1 order by v2 desc;
----
5 NULL
Expand Down
6 changes: 3 additions & 3 deletions src/expr/impl/src/scalar/extract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@ mod tests {
assert_eq!(extract(Hour), "23");
assert_eq!(extract(Minute), "22");
assert_eq!(extract(Second), "57.123450");
assert_eq!(extract(Millisecond), "57123.450");
assert_eq!(extract(Microsecond), "57123450");
assert_eq!(extract(Epoch), "84177.123450");
assert_eq!(extract(Millisecond), "57123.450000");
assert_eq!(extract(Microsecond), "57123450.000");
assert_eq!(extract(Epoch), "84177.12345000");
}

#[test]
Expand Down

0 comments on commit 28e556f

Please sign in to comment.