zzzxl1993 opened a new pull request, #368:
URL: https://github.com/apache/doris-thirdparty/pull/368

   ✅ 允许(放行)
   "\0\0\0\0"         →  upto=0, all_trailing_nulls=true  →  ✅ 放行(空字符串+填充)
   "hello\0\0\0"      →  upto=5, all_trailing_nulls=true  →  ✅ 放行(CHAR填充)
   "abc\0\0"          →  upto=3, all_trailing_nulls=true  →  ✅ 放行(CHAR填充)
   
   ❌ 拒绝(抛异常)
   "\0hello"          →  upto=0, all_trailing_nulls=false →  ❌ 拒绝(中间有内容)
   "hel\0lo"          →  upto=3, all_trailing_nulls=false →  ❌ 拒绝(中间有内容)
   "abc\0\0xyz"       →  upto=3, all_trailing_nulls=false →  ❌ 拒绝(中间有内容)


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to