We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hello Team We have realised that dropping the temp table in not enough to remove actual data, we need to enable purge.
Can we enable the property while creating the table or enable it before dropping it.
Option 1: CTAS should include table property 'external.table.purge'='true' or Option 2: enable it before deleting the table.
'external.table.purge'='true'
ALTER TABLE table_name SET TBLPROPERTIES('external.table.purge'='true'); DROP TABLE IF EXISTS table_name;
This fix should be applicable for External and iceberg tables.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello Team
We have realised that dropping the temp table in not enough to remove actual data, we need to enable purge.
Can we enable the property while creating the table or enable it before dropping it.
Option 1: CTAS should include table property
'external.table.purge'='true'
or
Option 2: enable it before deleting the table.
This fix should be applicable for External and iceberg tables.
The text was updated successfully, but these errors were encountered: