Apache Hive(版本1.2.1000.2.6.5.0-292)
是否可以使用位置可变的文件创建配置单元表?
我有这个脚本-file.txt
drop table if exists test2;
create table test2 (
col1 string
)
location '${hiveconf:name}'
并使用以下命令运行它-beeline_d -f file.txt --hiveconf name ='/ asset / test'
但是我回来了Error: Failed to open new session: org.apache.hive.service.cli.HiveSQLException: java.lang.IllegalArgumentException: Cannot modify name at runtime. It is not in list of params that are allowed to be modified at runtime (state=,code=0)