wyxxxcat opened a new pull request, #44958: URL: https://github.com/apache/doris/pull/44958
``` mysql> show create table t2\G; *************************** 1. row *************************** Table: t2 Create Table: CREATE TABLE `t2` ( `timestamp` date NOT NULL COMMENT '['0000-01-01', '9999-12-31']', `type` tinyint NOT NULL COMMENT '[-128, 127]', `user_id` bigint NULL COMMENT '[-9223372036854775808, 9223372036854775807]' ) ENGINE=OLAP DUPLICATE KEY(`timestamp`, `type`) DISTRIBUTED BY HASH(`type`) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "true", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "binlog.enable" = "true", "binlog.ttl_seconds" = "86400", "binlog.max_bytes" = "9223372036854775807", "binlog.max_history_nums" = "9223372036854775807", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" ); 1 row in set (0.00 sec) ``` ``` CREATE TABLE `t2` ( `timestamp` date NOT NULL COMMENT '['0000-01-01', '9999-12-31']', `type` tinyint NOT NULL COMMENT '[-128, 127]', `user_id` bigint NULL COMMENT '[-9223372036854775808, 9223372036854775807]' ) ENGINE=OLAP DUPLICATE KEY(`timestamp`, `type`) DISTRIBUTED BY HASH(`type`) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "true", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "binlog.enable" = "true", "binlog.ttl_seconds" = "86400", "binlog.max_bytes" = "9223372036854775807", "binlog.max_history_nums" = "9223372036854775807", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" ); ``` ``` at org.apache.doris.qe.ConnectProcessor.executeQuery(ConnectProcessor.java:306) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.qe.ConnectProcessor.handleQuery(ConnectProcessor.java:250) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.qe.MysqlConnectProcessor.handleQuery(MysqlConnectProcessor.java:209) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.qe.MysqlConnectProcessor.dispatch(MysqlConnectProcessor.java:237) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.qe.MysqlConnectProcessor.processOnce(MysqlConnectProcessor.java:417) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.mysql.ReadListener.lambda$handleEvent$0(ReadListener.java:52) ~[doris-fe.jar:1.2-SNAPSHOT] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?] at java.lang.Thread.run(Thread.java:833) ~[?:?] Caused by: org.apache.doris.nereids.exceptions.ParseException: mismatched input '<EOF>' expecting {')', ','}(line 18, pos 1) ``` -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org