(improvement)(chat) rename QueryResponder to ExecuteResultProcessor and add ResultProcessor (#504)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2023-12-13 22:16:42 +08:00
committed by GitHub
parent f89be48e98
commit fda5a577d6
20 changed files with 78 additions and 63 deletions

View File

@@ -296,6 +296,7 @@ CREATE TABLE `s2_metric` (
`alias` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`tags` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`relate_dimensions` varchar(500) DEFAULT NULL COMMENT '指标相关维度',
`ext` text DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='指标表';

View File

@@ -130,6 +130,8 @@ CREATE TABLE `s2_collect`
PRIMARY KEY (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
alter table s2_metric add column `ext` text DEFAULT NULL;
CREATE TABLE `s2_metric_query_default_config`
(
`id` bigint NOT NULL PRIMARY KEY AUTO_INCREMENT,