配置单元查询内部shell脚本

c86crjj0  于 2021-06-28  发布在  Hive
关注(0)|答案(1)|浏览(287)

我想在shell脚本中运行配置单元查询。如果配置单元查询失败,我想退出shell脚本并抛出错误。现在,即使我的配置单元查询失败,接下来的步骤也会执行。有人能帮忙吗:
瓦尔= hive -e " select col1 from table_name;" (假设表只有一行)
echo“如果配置单元失败,请不要运行”

sr4lhrrt

sr4lhrrt1#

hive -e "select col1 from table_name"

if test $? -ne 0
then 
    exit 1
fi

相关问题