-
Notifications
You must be signed in to change notification settings - Fork 328
Add hyper write support #12900
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
Open
AdRiley
wants to merge
57
commits into
develop
Choose a base branch
from
wip/adr/add-hyper-write
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add hyper write support #12900
Conversation
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
3120fe9
to
9e1af90
Compare
2a5b700
to
3cf0024
Compare
Implements the `Table.write` for this `File_Format`. | ||
write_table self file:Writable_File table:Table on_existing_file match_columns:Match_Columns on_problems:Problem_Behavior = | ||
_ = [match_columns, on_problems] | ||
if (on_existing_file == Existing_File_Behavior.Append) then Error.throw (Illegal_Argument.Error "Writing to hyper files is not yet supported.") else |
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.
Suggested change
if (on_existing_file == Existing_File_Behavior.Append) then Error.throw (Illegal_Argument.Error "Writing to hyper files is not yet supported.") else | |
if (on_existing_file == Existing_File_Behavior.Append) then Error.throw (Illegal_Argument.Error "Appending to hyper files is not yet supported.") else |
?
GregoryTravis
approved these changes
Apr 24, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull Request Description
Adds support for writing to tableau hyper files.
Defaults to Extract Extract
Or can set schema and table name by using explicit format
Appending currently not supported, but will be added as follow on.
Important Notes
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
TypeScript,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
or the Snowflake database integration, a run of the Extra Tests has been scheduled.