zclllyybb opened a new pull request, #39381:
URL: https://github.com/apache/doris/pull/39381

   ## Proposed changes
   
   Issue Number: close #xxx
   
   before:
   ```sql
   mysql> delete from table_7298276 where  中文列名1 > '2023-08-17' and 中文列名2 > 
'-68' and 中文列名3 in ("77", "0", "-35", "-8", "93", "-87", "42", "24", "57", 
"74");
   ERROR 1105 (HY000): errCode = 2, detailMessage = delete job failed, 
errmsg:10019: [(10.16.10.8)[INVALID_ARGUMENT]failed to parse condition_str, 
condtion=TCondition {
     01: column_name (string) = 
"\xe4\xb8\xad\xe6\x96\x87\xe5\x88\x97\xe5\x90\x8d1",
     02: condition_op (string) = ">",
     03: condition_values (list) = list<string>[1] {
       [0] = "2023-08-17",
     },
     04: column_unique_id (i32) = 0,
     05: marked_by_runtime_filter (bool) = false,
     1000: compound_type (i32) = 0,
   }]
   ```
   
   now:
   ```sql
   mysql> delete from table_7298276 where 中文列名1 > '2012-08-17' and 中文列名2 > -68 
and 中文列名3 in (1,2,3);
   Query OK, 0 rows affected (0.14 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-unsubscr...@doris.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