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


##########
be/src/vec/exec/format/column_type_convert.h:
##########
@@ -285,10 +286,8 @@ class NumericToStringConverter : public 
ColumnTypeConverter {
                         (*null_map)[start_idx + i] = 1;
                     }
                 }
-                char buf[128];
-                int strlen;
-                strlen = fast_to_buffer(src_data[i], buf);
-                string_col.insert_data(buf, strlen);
+                auto str = CastToString::from_number(src_data[i]);

Review Comment:
   这里是严格模式,还是非严格模式?



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