是否可以在配置单元中以ORC文件格式存储非本机表? 如果是,怎么样?
我正在使用Hive 1.1.0
hive>create external table test1(id int,name string)
clustered by (id) into 2 buckets
stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
with serdeproperties("hbase.columns.mapping"=":key,cf1:name")
tblproperties('transactional'='true','hbase.table.name'='test1');
hive>alter table test1 set fileformat orc;
FAILED:SemanticException [错误10134]:ALTER TABLE不能用于非本机表test1