在cli中执行hql文件时,我能用“meld\u beeline”替换“hive”吗

62lalag4  于 2021-06-27  发布在  Hive
关注(0)|答案(1)|浏览(790)

例子:
而不是hive--hiveconf table=employee--hiveconf year=2019-f sample.hql
我可以使用meld\u beeline--hiveconf table=employee--hiveconf year=2019-f sample.hql吗

t5fffqht

t5fffqht1#

假设您使用的是bash,那么可以使用变量替换:

cmd=hive
$cmd --hiveconf table=employee --hiveconf year=2019 -f sample.hql
${cmd/hive/meld_beeline} --hiveconf table=employee --hiveconf year=2019 -f sample.hql

相关问题