You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm delighted to see CREATE OR REPLACE support in Trino: trinodb/trino#13180
This will both:
History of the table will be preserved in the Iceberg metadata, making it more transparent to the user what happened to the table.
Make the execution of the pipeline faster, since fewer statements are being issued
Describe alternatives you've considered
I would love to work on this, but my main question is how to determine if this is supported. I checked, but didn't find any minimal version to enable certain features.
Who will benefit?
Everyone using Iceberg in Trino 🚀
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Theoretically you could get the version of the server (via various means including version() function) and decide with that info. The problem is that it will be different for each connector so it will only be true after you figure out the connector used in a specific catalog (which you can also do via a query).
You could just leave it to the user to worry about and deal with it in the same way you deal with any other statement that might or might not be supported by the Trino version of the server and the connector. For example think of MERGE or TRUNCATE .. are you doing anything about these in terms of validation?
Describe the feature
Hey everyone!
I'm delighted to see
CREATE OR REPLACE
support in Trino: trinodb/trino#13180This will both:
Describe alternatives you've considered
I would love to work on this, but my main question is how to determine if this is supported. I checked, but didn't find any minimal version to enable certain features.
Who will benefit?
Everyone using Iceberg in Trino 🚀
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: