(fix)(headless) Fix the error that occurs when inserting in multiple cases of drill-down dimensions (#1665)

This commit is contained in:
lexluo09
2024-09-13 11:47:28 +08:00
committed by GitHub
parent d89d6661a9
commit faae692dff
5 changed files with 8 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ CREATE TABLE IF NOT EXISTS `s2_model` (
`viewer` varchar(3000) DEFAULT NULL , -- domain available users
`view_org` varchar(3000) DEFAULT NULL , -- domain available organization
`entity` varchar(500) DEFAULT NULL , -- domain entity info
`drill_down_dimensions` varchar(500) DEFAULT NULL , -- drill down dimensions info
`drill_down_dimensions` TEXT DEFAULT NULL , -- drill down dimensions info
PRIMARY KEY (`id`)
);
COMMENT ON TABLE s2_model IS 'model information';