配置单元cli选项-f发生错误时不工作

eqoofvh9  于 2021-06-26  发布在  Hive
关注(0)|答案(1)|浏览(364)

我有一个包含许多本地sql加载数据的文件,其中可能包含可能导致hivecli出错的sql。出现错误后,cli将停止运行rest SQL。如果我想忽略这些错误,继续这些sql,我该怎么做?

kcugc4gi

kcugc4gi1#

设置hive.cli.errors.ignore=true;
演示

hive -f <(echo 'select x;select 1+1 as x')

失败:semanticexception[错误10004]:行1:7无效的表别名或列引用“x”:(可能的列名为:)

hive --hiveconf hive.cli.errors.ignore=true -f <(echo 'select x;select 1+1 as x')

失败:semanticexception[错误10004]:行1:7无效的表别名或列引用“x”:(可能的列名为:)
好 啊
2

相关问题