Skip to content

Commit

Permalink
[Fix][admin] Exceptions caused by duplicate names of udf's Java class…
Browse files Browse the repository at this point in the history
…es (DataLinkDC#2374)

* [Fix][admin] H2 SQL file exceptions and divide by zero exceptions

* [Fix][admin] Remove designated tenants

* [Fix][web] Popup box cannot be closed

* [Fix][admin] Exceptions caused by duplicate names of udf's Java classes
  • Loading branch information
zhangyongtian authored Oct 10, 2023
1 parent d2d26f6 commit a76beb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/sql/dinky-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,8 @@ CREATE TABLE `dinky_task` (
`update_time` datetime(0) NULL DEFAULT NULL COMMENT 'update time',
`version_id` int(11) NULL DEFAULT NULL COMMENT 'version id',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `task_un_idx1`(`name`, `tenant_id`) USING BTREE
UNIQUE INDEX `task_un_idx1`(`name`, `tenant_id`) USING BTREE,
UNIQUE INDEX `task_un_idx2`(`save_point_path`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'Task' ROW_FORMAT = Dynamic;

-- ----------------------------
Expand Down

0 comments on commit a76beb7

Please sign in to comment.