-
Notifications
You must be signed in to change notification settings - Fork 1.7k
chore(deps): bump the arrow-parquet group with 7 updates #16047
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
Merged
crepererum
merged 3 commits into
main
from
dependabot/cargo/main/arrow-parquet-eb83e047c5
May 16, 2025
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -341,4 +341,4 @@ statement ok | |
| drop table t_stringview; | ||
|
|
||
| statement ok | ||
| drop table empty_table; | ||
| drop table empty_table; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -277,4 +277,4 @@ statement ok | |
| drop table strings | ||
|
|
||
| statement ok | ||
| drop table dict_table | ||
| drop table dict_table | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -198,4 +198,4 @@ NULL | |
| query B | ||
| select null !~* 'abc'; | ||
| ---- | ||
| NULL | ||
| NULL | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -126,4 +126,4 @@ select | |
| from (values ('a'), ('b')) as tbl(col); | ||
| ---- | ||
| NULL NULL NULL | ||
| NULL NULL NULL | ||
| NULL NULL NULL | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,9 +53,9 @@ select * from struct_values; | |
| query TT | ||
| select arrow_typeof(s1), arrow_typeof(s2) from struct_values; | ||
| ---- | ||
| Struct([Field { name: "c0", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) Struct([Field { name: "a", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "c0", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) Struct([Field { name: "a", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "c0", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) Struct([Field { name: "a", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(c0 Int32) Struct(a Int32, b Utf8) | ||
|
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 change is due to how Struct's are displayed due to |
||
| Struct(c0 Int32) Struct(a Int32, b Utf8) | ||
| Struct(c0 Int32) Struct(a Int32, b Utf8) | ||
|
|
||
|
|
||
| # struct[i] | ||
|
|
@@ -229,12 +229,12 @@ select named_struct('field_a', 1, 'field_b', 2); | |
| query T | ||
| select arrow_typeof(named_struct('first', 1, 'second', 2, 'third', 3)); | ||
| ---- | ||
| Struct([Field { name: "first", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "second", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "third", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(first Int64, second Int64, third Int64) | ||
|
|
||
| query T | ||
| select arrow_typeof({'first': 1, 'second': 2, 'third': 3}); | ||
| ---- | ||
| Struct([Field { name: "first", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "second", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "third", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(first Int64, second Int64, third Int64) | ||
|
|
||
| # test nested struct literal | ||
| query ? | ||
|
|
@@ -443,12 +443,12 @@ select * from t; | |
| query T | ||
| select arrow_typeof(c1) from t; | ||
| ---- | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(r Utf8, b Int32) | ||
|
|
||
| query T | ||
| select arrow_typeof(c2) from t; | ||
| ---- | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(r Utf8, b Float32) | ||
|
|
||
| statement ok | ||
| drop table t; | ||
|
|
@@ -465,8 +465,8 @@ select * from t; | |
| query T | ||
| select arrow_typeof(column1) from t; | ||
| ---- | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "c", data_type: Float64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "c", data_type: Float64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(r Utf8, c Float64) | ||
| Struct(r Utf8, c Float64) | ||
|
|
||
| statement ok | ||
| drop table t; | ||
|
|
@@ -498,9 +498,9 @@ select coalesce(s1) from t; | |
| query T | ||
| select arrow_typeof(coalesce(s1, s2)) from t; | ||
| ---- | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(a Float32, b Utf8) | ||
| Struct(a Float32, b Utf8) | ||
| Struct(a Float32, b Utf8) | ||
|
|
||
| statement ok | ||
| drop table t; | ||
|
|
@@ -525,9 +525,9 @@ select coalesce(s1, s2) from t; | |
| query T | ||
| select arrow_typeof(coalesce(s1, s2)) from t; | ||
| ---- | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct([Field { name: "a", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "b", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(a Float32, b Utf8) | ||
| Struct(a Float32, b Utf8) | ||
| Struct(a Float32, b Utf8) | ||
|
|
||
| statement ok | ||
| drop table t; | ||
|
|
@@ -585,13 +585,13 @@ create table t(a struct(r varchar, c int, g float), b struct(r varchar, c float, | |
| query T | ||
| select arrow_typeof(a) from t; | ||
| ---- | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "c", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "g", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(r Utf8, c Int32, g Float32) | ||
|
|
||
| # type of each column should not coerced but perserve as it is | ||
| query T | ||
| select arrow_typeof(b) from t; | ||
| ---- | ||
| Struct([Field { name: "r", data_type: Utf8, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "c", data_type: Float32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }, Field { name: "g", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }]) | ||
| Struct(r Utf8, c Float32, g Int32) | ||
|
|
||
| statement ok | ||
| drop table t; | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
these changes come from running
--completeon sqllogictests