Repository: hive Updated Branches: refs/heads/master ac721836f -> 05c0c7047
HIVE-18631: Hive metastore schema initialization failing on mysql (Deepesh Khandelwal reviewed by Jesus Camacho Rodriguez) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/05c0c704 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/05c0c704 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/05c0c704 Branch: refs/heads/master Commit: 05c0c7047ca4b08add4276be306f6f8822b23d65 Parents: ac72183 Author: Deepesh Khandelwal <[email protected]> Authored: Mon Feb 5 21:45:56 2018 -0800 Committer: Jesus Camacho Rodriguez <[email protected]> Committed: Mon Feb 5 21:45:56 2018 -0800 ---------------------------------------------------------------------- metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/05c0c704/metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql ---------------------------------------------------------------------- diff --git a/metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql b/metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql index 947f2e1..eb5da4a 100644 --- a/metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql +++ b/metastore/scripts/upgrade/mysql/hive-schema-3.0.0.mysql.sql @@ -604,7 +604,7 @@ CREATE TABLE IF NOT EXISTS `TBLS` ( `TBL_TYPE` varchar(128) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `VIEW_EXPANDED_TEXT` mediumtext, `VIEW_ORIGINAL_TEXT` mediumtext, - `IS_REWRITE_ENABLED` bit(1) NOT NULL DEFAULT 0 + `IS_REWRITE_ENABLED` bit(1) NOT NULL DEFAULT 0, PRIMARY KEY (`TBL_ID`), UNIQUE KEY `UNIQUETABLE` (`TBL_NAME`,`DB_ID`), KEY `TBLS_N50` (`SD_ID`),
