-
Notifications
You must be signed in to change notification settings - Fork 0
Add support for file column #20
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
Conversation
| export with_file_column! | ||
| export scan!, next_batch, free_batch, free_stream | ||
|
|
||
| const Option{T} = Union{T, Nothing} |
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.
Removing this one here in this PR, as it is not used.
| stream = scan!(scan) | ||
| ``` | ||
| """ | ||
| const FILE_COLUMN = "_file" |
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 thought you said you wanted to make this a function and fetch from rust_lib that way?
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.
That's what I mentioned in the meeting: that does not work cleanly
| )::Cint | ||
|
|
||
| if result != 0 | ||
| error("Failed to add file column to scan") |
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.
Perhaps we can throw IcebergException instead of this one? Not sure, we're not consistent in this regard
Adds support for the
_filecolumn used in projections of scans.