morningman commented on issue #7419: URL: https://github.com/apache/incubator-doris/issues/7419#issuecomment-995953589
I tested in 0.15: ``` create table tbl1(k1 string, k2 string) distributed by hash(k1) buckets 1; insert into tbl1 values("6,2,8,2", "5,7,2,8"); ``` The result is as expected: ``` mysql> select regexp_replace(k1, ",", "\n") col1, regexp_replace(k2, ",", "\n") col2 from tbl1\G *************************** 1. row *************************** col1: 6 2 8 2 col2: 5 7 2 8 1 row in set (0.02 sec) ``` -- 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