-
Notifications
You must be signed in to change notification settings - Fork 360
General support for metadata columns + implementation for _pos
#1791
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?
Conversation
Update from upstream
…lds at arrow-rs 57.0
| /// | ||
| /// Metadata columns are virtual columns that provide metadata about the rows, | ||
| /// such as file paths or row positions. These come from https://iceberg.apache.org/spec/#identifier-field-ids | ||
| pub fn with_metadata_columns(mut self, metadata_columns: Vec<String>) -> Self { |
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.
Need some validation here, for allowed column names. Or type safety, to pick columns from enum (possibly preventing duplication?)
liurenjie1024
left a comment
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.
Similar comments here: #1824 (review)
|
Blueprint of how we're thinking about this: RelationalAI#14 |
Which issue does this PR close?
#1765
What changes are included in this PR?
Are these changes tested?