github-actions[bot] commented on code in PR #33243: URL: https://github.com/apache/doris/pull/33243#discussion_r1590476879
########## be/test/vec/function/function_string_test.cpp: ########## @@ -1342,6 +1342,103 @@ TEST(function_string_test, function_uuid_test) { } } +TEST(function_string_test, function_overlay_test) { + std::string func_name = "overlay"; + { + InputTypeSet input_types = { + TypeIndex::String, + TypeIndex::Int32, + TypeIndex::Int32, + TypeIndex::String, + }; + DataSet data_set = { + {{ + Null(), + INT(7), + INT(5), + VARCHAR("9090"), + }, + {Null()}}, Review Comment: warning: function 'TEST' exceeds recommended size/complexity thresholds [readability-function-size] ```cpp ypes, data_set); ^ ``` <details> <summary>Additional context</summary> **be/test/vec/function/function_string_test.cpp:1360:** 96 lines including whitespace and comments (threshold 80) ```cpp ypes, data_set); ^ ``` </details> -- 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