我有一个hql脚本test.hql在查询日期='${env:date}'中我有像这样的env变量如何将参数传递给HQL如果是hiveconf或hivvar,我们运行如下脚本
hive -f --hiveconf date='20220526' test.hql
有谁能告诉我我们将如何传递env变量
hive -f --env date='20220526' test.hql
我不能像上面那样传递
环境变量将由shell解释,而不是查询。
export DATE='20220526'
hive -f --hiveconf date="$DATE" test.hql
另外,应该使用beeline
而不是废弃的Hive cli