(improvement)(project) support for modifying filter conditions and fix group by pushdown and add windows scipt (#49)

Co-authored-by: lexluo <lexluo@tencent.com>
This commit is contained in:
lexluo09
2023-09-03 23:51:47 +08:00
committed by GitHub
parent 8440f1f30e
commit 559ef974b0
317 changed files with 7449 additions and 9413 deletions

View File

@@ -1,33 +1,11 @@
CREATE TABLE IF NOT EXISTS `s2_dictionary_task`
(
`id` bigint
(
20
) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar
(
255
) NOT NULL COMMENT '任务名称',
`description` varchar
(
255
) NOT NULL COMMENT '任务描述',
`command` mediumtext NOT NULL COMMENT '任务请求参数',
`status` int
(
10
) NOT NULL COMMENT '任务最终运行状态',
`created_at` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`created_by` varchar
(
100
) NOT NULL COMMENT '创建人',
`elapsed_ms` bigint
(
10
) DEFAULT NULL COMMENT '任务耗时',
PRIMARY KEY
(
`id`
)
) COMMENT='字典任务信息表'
CREATE TABLE IF NOT EXISTS `s2_dictionary_task` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL COMMENT '任务名称',
`description` varchar(255) NOT NULL COMMENT '任务描述',
`command` mediumtext NOT NULL COMMENT '任务请求参数',
`status` int(10) NOT NULL COMMENT '任务最终运行状态',
`created_at` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`created_by` varchar(100) NOT NULL COMMENT '创建人',
`elapsed_ms` bigint(10) DEFAULT NULL COMMENT '任务耗时',
PRIMARY KEY (`id`)
)COMMENT='字典任务信息表'