How to unset TBLPROPERTIES in Hive
This file contains 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
-- unset a subset of the properties and some non-existed properties without if exists | |
ALTER TABLE testTable UNSET TBLPROPERTIES ('c', 'x', 'y', 'z'); | |
Releavnt Link - https://github.com/apache/hive/search?utf8=%E2%9C%93&q=unset&type= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment