yuxuan-luo opened a new issue, #15596: URL: https://github.com/apache/doris/issues/15596
### 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 1.2.1 ### What's Wrong? -- 建表 CREATE TABLE user_log_1 ( user_id VARCHAR(20), item_id VARCHAR(30), category_id VARCHAR(30), behavior VARCHAR(30), ts datetime ) ENGINE=OLAP UNIQUE KEY(`user_id`) COMMENT "OLAP" DISTRIBUTED BY HASH(`user_id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1", "function_column.sequence_type" = 'Date', "in_memory" = "false", "storage_format" = "V2" ); -- 导入数据集 1,112321,10023,pv,2021-09-27 10:40:34 1,112326,10023,pv,2021-09-27 10:41:34 1,112325,10023,pv,2021-09-27 10:42:34 1,112324,10023,pv,2021-09-27 10:43:34 1,112323,10023,pv,2021-09-27 10:44:34 1,112327,10023,pv,2021-09-27 10:47:34 -- stream load curl --location-trusted -u admin -H "label:load_local_file_test_2" -H "function_column.sequence_col: ts" -H "column_separator:," -H "hidden_columns:__DORIS_SEQUENCE_COL__" -T test1.csv http://10.0.0.102:8040/api/hugo/user_log_1/_stream_load 在导入第一次的时候是成功的,在导入第二次的时候会正常显示错误:detailMessage = Label [load_local_file_test_2] has already been used, relate to txn [1014] -- 在数据库中使用 clean label 命令 clean label load_local_file_test_2 from hugo; or clean label from hugo; 再进行stream load 导入,依然会显示错误 detailMessage = Label [load_local_file_test_2] has already been used, relate to txn [1014] clean label 失效 ### What You Expected? 在使用 clean label from hugo; 后能正常导入数据 ### 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