-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Second batch of updating sql tests to use assert_batches_eq #1180
Second batch of updating sql tests to use assert_batches_eq #1180
Conversation
datafusion/tests/sql.rs
Outdated
@@ -2102,6 +2116,8 @@ async fn equijoin_and_other_condition() -> Result<()> { | |||
let sql = | |||
"SELECT t1_id, t1_name, t2_name FROM t1 JOIN t2 ON t1_id = t2_id AND t2_name >= 'y' ORDER BY t1_id"; | |||
let actual = execute(&mut ctx, sql).await; | |||
// let a = execute_to_batches(&mut ctx, sql).await; | |||
// println!("{}", pretty_format_batches(&a).unwrap()); |
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.
can you either remove this or put a todo on what to do next?
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 just caught up the tracking comment that is used for test porting:
// --- End Test Porting ---
Let me know when you think its enough updates on this batch / PR to merge and ill clean up those helpers so it can be merged.
@alamb this should be good amount for another batch - when you get the chance can you give it a review? |
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.
Looking great -- thank you @matthewmturner
Which issue does this PR close?
Continued work on #743 task 2
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?