mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-04-29 12:34:28 +08:00
(improvement)(Headless) Metric Market only displays published metrics (#867)
* (improvement)(Headless) Remove Query controller * (improvement)(Headless) Filter metrics and dimensions based on whether they were created as tags * (improvement)(Headless) Metric Market only displays published metrics --------- Co-authored-by: jolunoluo
This commit is contained in:
@@ -288,4 +288,6 @@ CREATE TABLE IF NOT EXISTS `s2_query_rule` (
|
||||
COMMENT ON TABLE s2_query_rule IS 'tag query rule table';
|
||||
|
||||
--20240325
|
||||
alter table s2_metric change tags classifications varchar(500) null;
|
||||
alter table s2_metric change tags classifications varchar(500) null;
|
||||
alter table s2_metric add column `is_publish` int(10) DEFAULT NULL COMMENT '是否发布';
|
||||
update s2_metric set is_publish = 1;
|
||||
Reference in New Issue
Block a user