You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2018/05/03 21:59:42 UTC

[1/2] hive git commit: HIVE-19394 : WM_TRIGGER trigger creation failed with type cast from Integer to Boolean (Thai Bui, reviewed by Prasanth Jayachandran and Sergey Shelukhin) ADDENDUM

Repository: hive
Updated Branches:
  refs/heads/branch-3 fbdd24b9d -> 5e5cd02a3
  refs/heads/master db26f3413 -> 70d835b98


HIVE-19394 : WM_TRIGGER trigger creation failed with type cast from Integer to Boolean (Thai Bui, reviewed by Prasanth Jayachandran and Sergey Shelukhin) ADDENDUM


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

Branch: refs/heads/master
Commit: 70d835b984eda8b752a4de82478dcf332064f186
Parents: db26f34
Author: sergey <se...@apache.org>
Authored: Thu May 3 14:59:14 2018 -0700
Committer: sergey <se...@apache.org>
Committed: Thu May 3 14:59:14 2018 -0700

----------------------------------------------------------------------
 .../src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/70d835b9/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
----------------------------------------------------------------------
diff --git a/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql b/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
index dffcbd6..aa9a34f 100644
--- a/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
+++ b/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
@@ -69,7 +69,7 @@ CREATE TABLE "WM_TRIGGER" (
     "NAME" character varying(128) NOT NULL,
     "TRIGGER_EXPRESSION" character varying(1024) DEFAULT NULL::character varying,
     "ACTION_EXPRESSION" character varying(1024) DEFAULT NULL::character varying,
-    "IS_IN_UNMANAGED" smallint NOT NULL DEFAULT false
+    "IS_IN_UNMANAGED" smallint NOT NULL DEFAULT 0
 );
 
 ALTER TABLE ONLY "WM_TRIGGER"


[2/2] hive git commit: HIVE-19394 : WM_TRIGGER trigger creation failed with type cast from Integer to Boolean (Thai Bui, reviewed by Prasanth Jayachandran and Sergey Shelukhin) ADDENDUM

Posted by se...@apache.org.
HIVE-19394 : WM_TRIGGER trigger creation failed with type cast from Integer to Boolean (Thai Bui, reviewed by Prasanth Jayachandran and Sergey Shelukhin) ADDENDUM


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

Branch: refs/heads/branch-3
Commit: 5e5cd02a34d24c80dbf5b3c279fa51263ff6fed5
Parents: fbdd24b
Author: sergey <se...@apache.org>
Authored: Thu May 3 14:59:14 2018 -0700
Committer: sergey <se...@apache.org>
Committed: Thu May 3 14:59:22 2018 -0700

----------------------------------------------------------------------
 .../src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/5e5cd02a/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
----------------------------------------------------------------------
diff --git a/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql b/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
index dffcbd6..aa9a34f 100644
--- a/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
+++ b/standalone-metastore/src/main/sql/postgres/upgrade-2.3.0-to-3.0.0.postgres.sql
@@ -69,7 +69,7 @@ CREATE TABLE "WM_TRIGGER" (
     "NAME" character varying(128) NOT NULL,
     "TRIGGER_EXPRESSION" character varying(1024) DEFAULT NULL::character varying,
     "ACTION_EXPRESSION" character varying(1024) DEFAULT NULL::character varying,
-    "IS_IN_UNMANAGED" smallint NOT NULL DEFAULT false
+    "IS_IN_UNMANAGED" smallint NOT NULL DEFAULT 0
 );
 
 ALTER TABLE ONLY "WM_TRIGGER"