Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update for extraction
  • Loading branch information
alamb committed Mar 28, 2025
commit cdc55e5c30ee68dc7e1f4f450d6ad8c7af551ee8
6 changes: 3 additions & 3 deletions datafusion/sqllogictest/test_files/expr/date_part.slt
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ SELECT extract(day from arrow_cast('14400 minutes', 'Interval(DayTime)'))
query I
SELECT extract(minute from arrow_cast('14400 minutes', 'Interval(DayTime)'))
----
14400
0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


query I
SELECT extract(second from arrow_cast('5.1 seconds', 'Interval(DayTime)'))
Expand All @@ -894,7 +894,7 @@ SELECT extract(second from arrow_cast('5.1 seconds', 'Interval(DayTime)'))
query I
SELECT extract(second from arrow_cast('14400 minutes', 'Interval(DayTime)'))
----
864000
0

query I
SELECT extract(second from arrow_cast('2 months', 'Interval(MonthDayNano)'))
Expand Down Expand Up @@ -954,7 +954,7 @@ from t
order by id;
----
0 0 5
1 0 15
1 0 3
2 0 0
3 2 0
4 0 8
Expand Down
Loading