aasha commented on a change in pull request #2724:
URL: https://github.com/apache/hive/pull/2724#discussion_r738331249
##########
File path: metastore/scripts/upgrade/hive/upgrade-3.1.0-to-4.0.0.hive.sql
##########
@@ -527,7 +527,8 @@ CREATE EXTERNAL TABLE IF NOT EXISTS `REPLICATION_METRICS` (
`POLICY_NAME` string,
`DUMP_EXECUTION_ID` bigint,
`METADATA` string,
- `PROGRESS` string
+ `PROGRESS` string,
+ `MESSAGE_FORMAT` varchar(16)
Review comment:
varchar or string?
##########
File path:
standalone-metastore/metastore-server/src/main/sql/mssql/hive-schema-4.0.0.mssql.sql
##########
@@ -1367,7 +1367,8 @@ CREATE TABLE "REPLICATION_METRICS" (
"RM_DUMP_EXECUTION_ID" bigint NOT NULL,
"RM_METADATA" varchar(max),
"RM_PROGRESS" varchar(max),
- "RM_START_TIME" integer NOT NULL
+ "RM_START_TIME" integer NOT NULL,
+ MESSAGE_FORMAT nvarchar(16),
Review comment:
typo nvarchar
##########
File path: metastore/scripts/upgrade/hive/hive-schema-4.0.0.hive.sql
##########
@@ -1466,7 +1466,8 @@ CREATE EXTERNAL TABLE IF NOT EXISTS `REPLICATION_METRICS`
(
`POLICY_NAME` string,
`DUMP_EXECUTION_ID` bigint,
`METADATA` string,
- `PROGRESS` string
+ `PROGRESS` string,
+ `MESSAGE_FORMAT` varchar(16)
Review comment:
is varchar supported? can this be string?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]