-
Notifications
You must be signed in to change notification settings - Fork 600
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support ROUND, NOT LIKE and EXTRACT #1498
Changes from all commits
7312d46
e6221c9
ebf4996
d3d8c05
3798a97
694df0b
18a53f6
0c53f20
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
query T | ||
values(extract(hour from timestamp '2001-02-16 20:38:40')); | ||
---- | ||
20 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
include ../../tpch/create_tables.slt.part | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. may move this file to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well batch/tpch.slt actually includes some tests that's only supported by java frontend. I will totally substitute the old tpch.slt when frontend-v2 are full-featured. |
||
|
||
include ../../tpch/insert_customer.slt.part | ||
include ../../tpch/insert_lineitem.slt.part | ||
include ../../tpch/insert_nation.slt.part | ||
include ../../tpch/insert_orders.slt.part | ||
include ../../tpch/insert_part.slt.part | ||
include ../../tpch/insert_partsupp.slt.part | ||
include ../../tpch/insert_supplier.slt.part | ||
include ../../tpch/insert_region.slt.part | ||
|
||
include ../../batch/tpch/q1.slt.part | ||
include ../../batch/tpch/q5.slt.part | ||
include ../../batch/tpch/q6.slt.part | ||
include ../../batch/tpch/q7.slt.part | ||
include ../../batch/tpch/q13.slt.part | ||
|
||
include ../../tpch/drop_tables.slt.part |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May also add some e2e tests for
not like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I will copy some tests from duckdb or elsewhere in later pr.