HappenLee commented on code in PR #22850: URL: https://github.com/apache/doris/pull/22850#discussion_r1290848343
########## be/src/vec/functions/in.h: ########## @@ -89,6 +89,24 @@ class FunctionIn : public IFunction { bool use_default_implementation_for_nulls() const override { return false; } + // size of [ in ( 1 , 2 , 3 , null) ] is 3 + size_t get_size_with_out_null(FunctionContext* context) { + if ((context->get_num_args() - 1) > 8) { Review Comment: 8 use FIXED_CONTAINER_MAX_SIZE replace -- 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