-
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
Support Utf8View and BinaryView in substrait serialization. #12199
Changes from all commits
d7be771
b17ae25
f38085d
5c4ebec
dc177d2
831017c
c587f99
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 |
---|---|---|
|
@@ -52,6 +52,7 @@ pub const DATE_32_TYPE_VARIATION_REF: u32 = 0; | |
pub const DATE_64_TYPE_VARIATION_REF: u32 = 1; | ||
pub const DEFAULT_CONTAINER_TYPE_VARIATION_REF: u32 = 0; | ||
pub const LARGE_CONTAINER_TYPE_VARIATION_REF: u32 = 1; | ||
pub const VIEW_CONTAINER_TYPE_VARIATION_REF: u32 = 2; | ||
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. FWIW, hardcoding the numbers isn't really the proper way to do type variations. (Rather we should add the variation as an extension and refer to the extension's id.) However, given this is already used for default vs large, I guess adding view makes sense - and they can all be migrated at once to the proper way someday. 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. Thank you. I'll craft a follow up ticket later 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. I filed #12355 to track |
||
pub const DECIMAL_128_TYPE_VARIATION_REF: u32 = 0; | ||
pub const DECIMAL_256_TYPE_VARIATION_REF: u32 = 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.
👍