This is an automated email from the ASF dual-hosted git repository.
jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new 04da9ccc0 [AMORO-3607]Fix syntax error in init sql #3607 (#3681)
04da9ccc0 is described below
commit 04da9ccc039bf5eaef5c5d4b49856428d1063a13
Author: Nico CHen <[email protected]>
AuthorDate: Thu Jul 31 16:36:53 2025 +0800
[AMORO-3607]Fix syntax error in init sql #3607 (#3681)
---
amoro-ams/src/main/resources/mysql/ams-mysql-init.sql | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/amoro-ams/src/main/resources/mysql/ams-mysql-init.sql
b/amoro-ams/src/main/resources/mysql/ams-mysql-init.sql
index c994f47cb..ee815fcc6 100644
--- a/amoro-ams/src/main/resources/mysql/ams-mysql-init.sql
+++ b/amoro-ams/src/main/resources/mysql/ams-mysql-init.sql
@@ -191,7 +191,7 @@ CREATE TABLE `table_process_state`
`fail_reason` varchar(4096) DEFAULT NULL COMMENT 'Error
message after task failed',
`summary` mediumtext COMMENT 'state summary, usually
a map',
PRIMARY KEY (`process_id`),
- KEY `table_index` (`table_id`, `plan_time`)
+ KEY `table_index` (`table_id`, `start_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT 'History of optimizing after
each commit';
CREATE TABLE `optimizing_task_quota`