Mryange commented on issue #32848: URL: https://github.com/apache/doris/issues/32848#issuecomment-2021829885
The subsequent version has been fixed. ``` mysql [test]>CREATE table tbl (c1 varchar(31), c2 varchar(10)) ENGINE=OLAP DUPLICATE KEY( c1 ) COMMENT "OLAP" DISTRIBUTED BY HASH( c1 ) BUCKETS auto PROPERTIES ( "replication_num" = "1" ); ct 'ab', 'abc'; mysql [test]>insert into tbl select 'ab', 'abc'; mysql [test]>SELECT c2 LIKE 'ab' FROM ( SELECT c2 FROM tbl EXCEPT SELECT 'ab' c2 ) AS t1; +----------------+ | (c2 like 'ab') | +----------------+ | 0 | +----------------+ ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
