yiguolei commented on code in PR #32145: URL: https://github.com/apache/doris/pull/32145#discussion_r1521497768
########## be/src/vec/functions/function_jsonb.cpp: ########## @@ -1097,10 +1097,15 @@ struct JsonbLengthUtil { } } auto jsonb_value = jsonb_data_column->get_data_at(i); + if (UNLIKELY(jsonb_value.size == 0)) { + null_map->get_data()[i] = 1; + res->insert_data(nullptr, 0); + continue; Review Comment: please add the test case in the issue to regression test -- 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