-
Notifications
You must be signed in to change notification settings - Fork 1.9k
WIP: Upgrade DataFusion to arrow-rs/parquet 58.0.0 #19728
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
base: main
Are you sure you want to change the base?
Changes from all commits
120d2b0
40a6a71
f50b9c3
87563d8
4afd46f
70e2841
b29b662
6a2e631
ca11966
63a85eb
277aac4
bb29b0c
35b97fa
d2e8da6
1002408
c062756
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,15 +96,15 @@ NULL | |
| query T | ||
| SELECT make_interval(0, 0, 0, 0, 0, 0, 0.0) || ''; | ||
| ---- | ||
|
Contributor
Author
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. This is due to @Jefffrey 's improvement in
Contributor
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. close #17455
Contributor
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. Probably should remove the accompanying comments too, these |
||
| (empty) | ||
| 0 secs | ||
|
|
||
| # Intervals being rendered as empty string, see issue: | ||
| # https://github.com/apache/datafusion/issues/17455 | ||
| # We expect something like 0.00 secs with query ? | ||
| query T | ||
| SELECT make_interval() || ''; | ||
| ---- | ||
| (empty) | ||
| 0 secs | ||
|
|
||
| query ? | ||
| SELECT INTERVAL '1' SECOND AS iv; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6068,7 +6068,7 @@ FROM ( | |
| # `WHERE acctbal > ( SELECT AVG(acctbal) FROM suppliers)` into a Join, | ||
| # breaking the input schema passed to the window function above. | ||
| # See: https://github.com/apache/datafusion/issues/17770 | ||
| query I | ||
| query error | ||
| WITH suppliers AS ( | ||
| SELECT * | ||
| FROM (VALUES (1, 10.0), (1, 20.0)) AS t(nation, acctbal) | ||
|
|
@@ -6080,4 +6080,6 @@ WHERE acctbal > ( | |
| SELECT AVG(acctbal) FROM suppliers | ||
| ); | ||
| ---- | ||
| 1 | ||
| DataFusion error: Join Error | ||
|
Contributor
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. This somehow errors now 🤔 |
||
| caused by | ||
| External error: task 20768 panicked with message "assertion `left == right` failed\n left: 4\n right: 1" | ||
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 reduction in metadata size is a direct consequence of @WaterWhisperer's PR to improve PageEncoding representation
PageEncodingStatsto bitmask arrow-rs#9051