This is an automated email from the ASF dual-hosted git repository. baomingyu pushed a commit to branch release-1.12.0 in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/release-1.12.0 by this push: new e8c81b441b [INLONG-10071][Manager] Supplementary the SQL statement trailing semicolon in apache_inlong_manager.sql (#10072) e8c81b441b is described below commit e8c81b441b3847fcd3a9810a709fc8d174ce4fff Author: feat <featzh...@outlook.com> AuthorDate: Thu Apr 25 16:51:33 2024 +0800 [INLONG-10071][Manager] Supplementary the SQL statement trailing semicolon in apache_inlong_manager.sql (#10072) Co-authored-by: averyzhang <averyzh...@tencent.com> (cherry picked from commit 13771b08fd5634913f15e6528197a6b7961b9e35) --- inlong-manager/manager-web/sql/apache_inlong_manager.sql | 4 ++-- inlong-manager/manager-web/sql/changes-1.12.0.sql | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inlong-manager/manager-web/sql/apache_inlong_manager.sql b/inlong-manager/manager-web/sql/apache_inlong_manager.sql index 235711a9d0..6b132ac98d 100644 --- a/inlong-manager/manager-web/sql/apache_inlong_manager.sql +++ b/inlong-manager/manager-web/sql/apache_inlong_manager.sql @@ -977,7 +977,7 @@ CREATE TABLE IF NOT EXISTS `module_config` `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table'; -- ---------------------------- -- Table structure for package_config @@ -996,7 +996,7 @@ CREATE TABLE IF NOT EXISTS `package_config` ( `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table'; -- ---------------------------- SET FOREIGN_KEY_CHECKS = 1; diff --git a/inlong-manager/manager-web/sql/changes-1.12.0.sql b/inlong-manager/manager-web/sql/changes-1.12.0.sql index 3c6c2bbe43..946cf92575 100644 --- a/inlong-manager/manager-web/sql/changes-1.12.0.sql +++ b/inlong-manager/manager-web/sql/changes-1.12.0.sql @@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS `module_config` `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table'; -- ---------------------------- -- Table structure for package_config @@ -66,8 +66,8 @@ CREATE TABLE IF NOT EXISTS `package_config` ( `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table'; DROP INDEX `unique_audit_base_type` ON `audit_base`; ALTER TABLE `audit_base` CHANGE is_sent indicator_type int(4) DEFAULT NULL COMMENT 'Indicator type for audit'; -ALTER TABLE `audit_base` ADD UNIQUE KEY unique_audit_base_type (`indicator_type`,`type` ) \ No newline at end of file +ALTER TABLE `audit_base` ADD UNIQUE KEY unique_audit_base_type (`indicator_type`,`type`); \ No newline at end of file