uranuswch commented on issue #24372: URL: https://github.com/apache/superset/issues/24372#issuecomment-1600651354
> I couldn't reproduce an issue on recent dev version of Superset. Can you provide the `CREATE TABLE` statement and query that fails? ``` CREATE DATABASE IF NOT EXISTS `dev-db` ON CLUSTER default; CREATE TABLE IF NOT EXISTS `log_events` ON CLUSTER default ( `_timestamp` DateTime64(3, 'UTC') COMMENT 'timestamp of event', `number_names` Array(String) COMMENT 'the name of numeric field in attributes', `number_values` Array(DECIMAL256(6)) COMMENT 'the value of numeric field in attributes', `string_names` Array(String) COMMENT 'the name of string field in attributes', `string_values` Array(String) COMMENT 'the value of string field in attributes', `boolean_names` Array(String) COMMENT 'the name of boolean field in attributes', `boolean_values` Array(UInt8) COMMENT 'the value of boolean field in attributes', `time_names` Array(String) COMMENT 'the name of time field in attributes', `time_values` Array(DateTime64(3, 'UTC')) COMMENT 'the value of time field in attributes', `array_names` Array(String) COMMENT 'the name of array field in attributes', `array_values` Array(Array(String)) COMMENT 'the value of array field in attributes', ) ENGINE = ReplicatedMergeTree('/clickhouse/tables/{database}/{shard}/log_events', '{replica}') PARTITION BY toYYYYMM(`_timestamp`) ORDER BY (toYYYYMMDD(_timestamp)) SETTINGS index_granularity = 8192; ``` You can follow this video to reproduce. https://github.com/apache/superset/assets/9143888/27e40b43-4fd2-4d5a-a176-c1380ce8d133 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org