yiguolei commented on code in PR #41541:
URL: https://github.com/apache/doris/pull/41541#discussion_r1793832900


##########
be/src/util/string_parser.hpp:
##########
@@ -306,7 +320,8 @@ T StringParser::string_to_int_internal(const char* 
__restrict s, int len, ParseR
             }
             val = val * 10 + digit;
         } else {
-            if ((UNLIKELY(i == first || !is_all_whitespace(s + i, len - i)))) {
+            if ((UNLIKELY(i == first || (!is_all_whitespace(s + i, len - i) &&

Review Comment:
   之前的代码对于  “3     ” 能转为3
   这里好像对  “3.1     ” 就不能转为3了



-- 
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