-
-
Notifications
You must be signed in to change notification settings - Fork 234
dolthub/dolt#9812: Coalesce IN
and =
operator logic
#3204
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
Conversation
c621c6d
to
e79fbd7
Compare
IN
and =
operator logic
4adff84
to
c0b49b2
Compare
2e6c03b
to
d4532fb
Compare
0977da2
to
17c53ae
Compare
cdd4338
to
e27a016
Compare
4094693
to
38d8d4f
Compare
@@ -120,6 +121,115 @@ type ScriptTestAssertion struct { | |||
// Unlike other engine tests, ScriptTests must be self-contained. No other tables are created outside the definition of | |||
// the tests. | |||
var ScriptTests = []ScriptTest{ | |||
{ | |||
// https://github.com/dolthub/dolt/issues/9836 | |||
Name: "Ordering by pk does not change the order of results", |
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.
For these tests, can you update to "select pk from test order by pk"? we don't need to test for casting here. You can also simplify the test to just include the 7 values
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.
You can also tag the entire test with Skip, instead of individual assertions
bdd8955
to
9fc0d7e
Compare
c773cba
to
1031166
Compare
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.
lgtm
Fixes dolthub/dolt#9812