-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Port tests in joins.rs to sqllogictes #6642
Conversation
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.
Thank you @jiangzhx -- this look great to me.
cc @aprimadi and @mingmwang
.unwrap(); | ||
} | ||
|
||
pub async fn register_hashjoin_datatype_table(ctx: &SessionContext) { |
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.
likewise we could port this to .sql as well
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.
I had some time so I made a PR to do this in #6656
@@ -212,3 +220,311 @@ fn register_nan_table(ctx: &SessionContext) { | |||
.unwrap(); | |||
ctx.register_batch("test_float", data).unwrap(); | |||
} | |||
|
|||
pub async fn register_timestamps_table(ctx: &SessionContext) { |
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.
I think this is code we can potentially port to sql (using arrow-typeof
), but we can also handle that as a follow on PR too
Which issue does this PR close?
Closes #6302.
Subtask of #6195
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?