You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/12/16 16:01:50 UTC

[GitHub] [incubator-doris] morningman commented on issue #7419: [Bug] 查询导出时数据展示问题

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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org