xiaokang commented on code in PR #39394: URL: https://github.com/apache/doris/pull/39394#discussion_r1718054953
########## be/src/vec/data_types/serde/data_type_object_serde.cpp: ########## @@ -98,8 +98,13 @@ void DataTypeObjectSerDe::write_one_cell_to_jsonb(const IColumn& column, JsonbWr JsonbParser json_parser; // encode as jsonb bool succ = json_parser.parse(value_str.data(), value_str.size()); - // maybe more graceful, it is ok to check here since data could be parsed - CHECK(succ); + if (!succ) { Review Comment: if (succ) { // write binary } else { // write string } -- 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