简体   繁体   中英

Kudu table properties

I have created a table with some properties. So basically I'm trying to edit the properties again.

For example:

'Comment' = 'table comment'

I want to make it to

'Comments' = 'table comment'

Additional info: I've tried

ALTER TABLE table_name SET TABLEPROPERTIES ('key' = 'value');

ImpalaRuntimeException: Error making 'alter_table' RPC to Hive metastore: Caused by : Metastore exception

So I'm trying to edit key? Is it possible. Any help is appreciated. Thanks

This is helping you?

ALTER TABLE tablename
  SET { TBLPROPERTIES (table_properties)}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM