You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ai...@apache.org on 2018/01/26 22:33:06 UTC

[2/3] hive git commit: Revert "HIVE-18202: Automatically migrate hbase.table.name to hbase.mapreduce.hfileoutputformat.table.name for hbase-based table (addendum)"

Revert "HIVE-18202: Automatically migrate hbase.table.name to hbase.mapreduce.hfileoutputformat.table.name for hbase-based table (addendum)"

This reverts commit ee802dba3f28d0467bbea045e6aa5c9bfac8e2a5.


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/c14a46dc
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/c14a46dc
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/c14a46dc

Branch: refs/heads/master
Commit: c14a46dc48ccc03ff135588c20571a522c2cb2b9
Parents: 0fc1cd4
Author: Aihua Xu <ai...@apache.org>
Authored: Fri Jan 26 13:44:05 2018 -0800
Committer: Aihua Xu <ai...@apache.org>
Committed: Fri Jan 26 13:44:05 2018 -0800

----------------------------------------------------------------------
 metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/c14a46dc/metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql
----------------------------------------------------------------------
diff --git a/metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql b/metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql
index c054322..0fdc615 100644
--- a/metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql
+++ b/metastore/scripts/upgrade/postgres/046-HIVE-18202.postgres.sql
@@ -1,6 +1,6 @@
-UPDATE "TABLE_PARAMS"
-  SET "PARAM_KEY" = 'hbase.mapreduce.hfileoutputformat.table.name'
+UPDATE TABLE_PARAMS
+  SET PARAM_KEY = 'hbase.mapreduce.hfileoutputformat.table.name'
 WHERE
-      "PARAM_KEY" = 'hbase.table.name'
+      PARAM_KEY = 'hbase.table.name'
 ;