Dong-GuoSheng opened a new issue, #33109:
URL: https://github.com/apache/doris/issues/33109

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   2.1.0版本发现,之前的版本应该也有
   
   ### What's Wrong?
   
   文件内容以tab(\t)分割,数据中(单个字段)可能含有“,”,使用streamload指定分隔符(\t)时,仍然报列数不匹配的错误。
   建表语句为:
   create table test.t001(
   a varchar(16),
   b varchar(16),
   c String)
   DUPLICATE KEY (a,b)
   DISTRIBUTED BY HASH(a) BUCKET 1;
   
   文件内容:a\tb\tc,d
   使用streamload导入数据,指定列名及分隔符:-H "column_sepatator=\t" -H "columns=a,b,c"
   本次导入报错:
   Reason: actual column number in csv file is less than schema column number. 
actual number: 3 schema column number: 105;line delimiter:[],column sepatator:[ 
],result values:[a, b, c,d ].src line [a b c,d]
   
   ### What You Expected?
   
   no error.
   
   ### How to Reproduce?
   
   如上,建表语句和文件内容附上
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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.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

Reply via email to