Copilot commented on code in PR #63965: URL: https://github.com/apache/doris/pull/63965#discussion_r3334122714
########## be/src/exprs/vexpr_context.cpp: ########## @@ -31,6 +31,7 @@ #include "core/block/columns_with_type_and_name.h" #include "core/column/column.h" #include "core/column/column_const.h" +#include "exec/common/util.hpp" #include "exprs/function_context.h" Review Comment: `exec/common/util.hpp` appears to be an unused include here (cast_set is already provided by `common/cast_set.h`, and there are no other symbols referenced from util.hpp). Keeping extra includes increases compile time and can introduce accidental dependencies. -- 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]
