Repository: hive Updated Branches: refs/heads/branch-2.3 3fbdca546 -> a4214f1a3
HIVE-16577: Syntax error in the metastore init scripts for mssql (Vihang Karajgaonkar, reviewed by Aihua Xu & Thejas M Nair) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/a4214f1a Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/a4214f1a Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/a4214f1a Branch: refs/heads/branch-2.3 Commit: a4214f1a34b0a51110ab7e734db26fff67f2a1c3 Parents: 3fbdca5 Author: Aihua Xu <[email protected]> Authored: Fri May 5 14:00:51 2017 -0400 Committer: Aihua Xu <[email protected]> Committed: Mon May 8 13:51:55 2017 -0400 ---------------------------------------------------------------------- metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql | 2 +- metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/a4214f1a/metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql ---------------------------------------------------------------------- diff --git a/metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql b/metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql index 57dd30f..33730de 100644 --- a/metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql +++ b/metastore/scripts/upgrade/mssql/hive-schema-2.2.0.mssql.sql @@ -579,7 +579,7 @@ CREATE TABLE NOTIFICATION_LOG EVENT_TYPE nvarchar(32) NOT NULL, DB_NAME nvarchar(128) NULL, TBL_NAME nvarchar(256) NULL, - MESSAGE_FORMAT nvarchar(16) + MESSAGE_FORMAT nvarchar(16), MESSAGE text NULL ); http://git-wip-us.apache.org/repos/asf/hive/blob/a4214f1a/metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql ---------------------------------------------------------------------- diff --git a/metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql b/metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql index 8a80a50..c117a32 100644 --- a/metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql +++ b/metastore/scripts/upgrade/mssql/hive-schema-2.3.0.mssql.sql @@ -579,7 +579,7 @@ CREATE TABLE NOTIFICATION_LOG EVENT_TYPE nvarchar(32) NOT NULL, DB_NAME nvarchar(128) NULL, TBL_NAME nvarchar(256) NULL, - MESSAGE_FORMAT nvarchar(16) + MESSAGE_FORMAT nvarchar(16), MESSAGE text NULL );
