Repository: hive Updated Branches: refs/heads/master cb534ab03 -> c97450cf4
HIVE-14440: Fix default value of USE_DEPRECATED_CLI in cli.cmd (Vihang Karajgaonkar, reviewed by Sergio Pena) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/c97450cf Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/c97450cf Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/c97450cf Branch: refs/heads/master Commit: c97450cf435c3d18281ac534b626ef2d6915e697 Parents: cb534ab Author: Vihang Karajgaonkar <[email protected]> Authored: Mon Aug 29 10:11:09 2016 -0500 Committer: Sergio Pena <[email protected]> Committed: Mon Aug 29 10:11:09 2016 -0500 ---------------------------------------------------------------------- bin/ext/cli.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/c97450cf/bin/ext/cli.cmd ---------------------------------------------------------------------- diff --git a/bin/ext/cli.cmd b/bin/ext/cli.cmd index d9185c0..74a1596 100644 --- a/bin/ext/cli.cmd +++ b/bin/ext/cli.cmd @@ -29,7 +29,7 @@ goto :EOF :update_cli if [%USE_DEPRECATED_CLI%] == [] ( - set USE_DEPRECATED_CLI=false + set USE_DEPRECATED_CLI=true ) if /I "%USE_DEPRECATED_CLI%" == "true" ( @@ -55,4 +55,4 @@ goto :EOF set JAR=%HIVE_LIB%\%%a ) popd -goto :EOF \ No newline at end of file +goto :EOF
