Skip to content

Commit

Permalink
[INLONG-10176][Manager] Fix the problem of sort_config table creation…
Browse files Browse the repository at this point in the history
… statement error (#10177)
  • Loading branch information
fuweng11 authored May 10, 2024
1 parent 384ca56 commit bc7a2d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -917,8 +917,7 @@ CREATE TABLE IF NOT EXISTS `sort_config`
(
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Incremental primary key',
`sink_id` int(11) NOT NULL COMMENT 'Sink id',
`source_params` text NOT NULL COMMENT 'The source params of sort',
`cluster_params` text NOT NULL COMMENT 'The cluster params of sort',
`config_params` text NOT NULL COMMENT 'The config params',
`sink_type` varchar(128) NOT NULL COMMENT 'Sink type',
`inlong_cluster_name` varchar(128) NOT NULL COMMENT 'Inlong cluster name',
`inlong_cluster_tag` varchar(128) NOT NULL COMMENT 'Inlong cluster tag',
Expand Down
3 changes: 1 addition & 2 deletions inlong-manager/manager-web/sql/apache_inlong_manager.sql
Original file line number Diff line number Diff line change
Expand Up @@ -980,8 +980,7 @@ CREATE TABLE IF NOT EXISTS `sort_config`
(
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Incremental primary key',
`sink_id` int(11) NOT NULL COMMENT 'Sink id',
`source_params` text NOT NULL COMMENT 'The source params of sort',
`cluster_params` text NOT NULL COMMENT 'The cluster params of sort',
`config_params` text NOT NULL COMMENT 'The config params',
`sink_type` varchar(128) NOT NULL COMMENT 'Sink type',
`inlong_cluster_name` varchar(128) NOT NULL COMMENT 'Inlong cluster name',
`inlong_cluster_tag` varchar(128) NOT NULL COMMENT 'Inlong cluster tag',
Expand Down
3 changes: 1 addition & 2 deletions inlong-manager/manager-web/sql/changes-1.12.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ CREATE TABLE IF NOT EXISTS `sort_config`
(
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Incremental primary key',
`sink_id` int(11) NOT NULL COMMENT 'Sink id',
`source_params` text NOT NULL COMMENT 'The source params of sort',
`cluster_params` text NOT NULL COMMENT 'The cluster params of sort',
`config_params` text NOT NULL COMMENT 'The config params',
`sink_type` varchar(128) NOT NULL COMMENT 'Sink type',
`inlong_cluster_name` varchar(128) NOT NULL COMMENT 'Inlong cluster name',
`inlong_cluster_tag` varchar(128) NOT NULL COMMENT 'Inlong cluster tag',
Expand Down

0 comments on commit bc7a2d9

Please sign in to comment.