nextdreamblue opened a new issue, #17903:
URL: https://github.com/apache/doris/issues/17903
   ### 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
   
   master
   
   ### What's Wrong?
   
   CREATE TABLE `test9999` (
     `k1` datetime NOT NULL COMMENT "",
     `v1` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT "",
     `v2` varchar(8) NOT NULL COMMENT "",
     `v3` largeint(40) NOT NULL COMMENT "",
     `v4` varchar(18) NULL COMMENT "",
     `v5` varchar(20) NULL COMMENT "",
     `v6` int NULL COMMENT "",
     `v7` varchar(8) NOT NULL COMMENT "",
     `v8` varchar(8) NOT NULL COMMENT "",
     `v9` varchar(320) NOT NULL COMMENT ""
   ) ENGINE=OLAP 
   DUPLICATE KEY(`k1`)
   COMMENT "OLAP" 
   DISTRIBUTED BY HASH(`k1`) BUCKETS 1
   PROPERTIES (
       "replication_allocation" = "tag.location.default: 1"
   );
   
   
   CREATE ROUTINE LOAD test123123 ON test9999
   COLUMNS TERMINATED BY "|",
   COLUMNS(k1, v2, v3, v4, v5, v6, v7, v8, v9)
   PROPERTIES
   (
       "max_batch_interval" = "30",
       "max_batch_rows" = "300000",
       "max_batch_size" = "111000000",
       "strict_mode" = "true"
   )
   FROM KAFKA
   (
       "kafka_broker_list" = "********",
       "kafka_topic" = "****",
       "kafka_partitions" = "*****,
       "property.group.id" = "******"
   );
   
   数据内容如下:
   ```
   2023-03-02|test|345634235887||132213123||AF|af|x...@gmail.com
   ```
   
   报错:
   ```
   Reason: column(v6) value is incorrect while strict mode is true, src value 
is af. src line [2023-03-02 test 345634235887 1111111111 132213123  AF af 
x...@gmail.com];
   ```
   
   
   相同的数据和表使用stream load导入就可以正确导入,routine load就会失败
   
   ### What You Expected?
   
   正确导入
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] 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