-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-40096: [C++][Parquet] Expand ParquetVersion enum values #47618
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 8 commits
a98e403
902d730
30f1a6f
c57868e
2df44a8
0b07767
e82d8a2
a0d7ee6
c7f2326
838abf5
5a65797
7b634fe
2160b67
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -135,7 +135,9 @@ FileType <- enum("FileType", | |
| #' @export | ||
| #' @rdname enums | ||
| ParquetVersionType <- enum("ParquetVersionType", | ||
| PARQUET_1_0 = 0L, PARQUET_2_4 = 2L, PARQUET_2_6 = 3L | ||
| PARQUET_1_0 = 0L, PARQUET_2_4 = 1L, PARQUET_2_6 = 2L, | ||
| PARQUET_2_7 = 3L, PARQUET_2_8 = 4L, PARQUET_2_9 = 5L, PARQUET_2_10 = 6L, | ||
| PARQUET_2_11 = 7L, PARQUET_2_12 = 8L | ||
|
Comment on lines
+138
to
+140
Member
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. Apparently this change ensures it matches up with the C++; not sure about this myself.
Member
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. @jonkeane If we export this enum, does that mean we shouldn't go changing previous values, or that it's actually important to sync up with the C++ values? I'm not confident I fully understand how enums are used here and what matches what. |
||
| ) | ||
|
|
||
| #' @export | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.