kangkaisen opened a new issue #1365: Stream Load error msg no column name URL: https://github.com/apache/incubator-doris/issues/1365 **Describe the bug** ``` Reason: the length of input is too long than schema. input_str: [onekkkkkkkkkkk] schema length: 8; actual length: 14; . src line: []; ``` **To Reproduce** 1. create a table ``` CREATE TABLE `t1` ( `dt` int(11) COMMENT "", `id` int(11) COMMENT "", `value` varchar(8) COMMENT "" ) ENGINE=OLAP DUPLICATE KEY(`dt`, `id`) PARTITION BY RANGE(`dt`) (PARTITION p1 VALUES LESS THAN ("10")) DISTRIBUTED BY HASH(`id`) BUCKETS 10; ``` 2. prepare the data ``` 08 1 onekkkkkkkkkkk 08 \N two 09 11 one 09 12 \N ``` 3. Load the data by stream load ``` curl --location-trusted -u xxx:xx -T data http://xxx.com:8410/api/test/t1/_stream_load ``` 4. curl the ErrorURL and get the error log
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
