-
Notifications
You must be signed in to change notification settings - Fork 50
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
Test: add many e2e test #88
Conversation
- insert.slt - join_left_inner.slt - limit.slt - where.slt tips: fix `limit` operator
tests/slt/insert.slt
Outdated
@@ -0,0 +1,33 @@ | |||
statement ok | |||
create table t(id int primary key, v1 int null, v2 int null, v3 int null) |
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.
Could you use multi types here?
insert into y values (0, 1, 5), (1, 1, 6), (2, 2, 7); | ||
|
||
query IIII | ||
select a, b, c, d from x join y on a = c; |
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.
The file name is join_left_inner, why you test inner join here?
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.
The file name is join_left_inner, why you test inner join here?
for risinglight
https://github.com/risinglightdb/risinglight/blob/main/tests/sql/join_left_inner.slt
tips:
limit
operator:Some(0)
, causing some problems.e2e sqllogictest
Code changes
Check List
Tests
Side effects
Note for reviewer