Copilot commented on code in PR #60900: URL: https://github.com/apache/doris/pull/60900#discussion_r2866963646
########## be/test/vec/function/cast/function_variant_cast_test.cpp: ########## @@ -24,9 +24,11 @@ #include "runtime/primitive_type.h" #include "runtime/runtime_state.h" #include "vec/columns/column_array.h" +#include "vec/columns/column_decimal.h" #include "vec/columns/column_variant.h" #include "vec/core/field.h" #include "vec/data_types/data_type_array.h" +#include "vec/data_types/data_type_decimal.h" Review Comment: The newly added headers `vec/columns/column_decimal.h` and `vec/data_types/data_type_decimal.h` are not used anywhere in this test file. Please remove them to avoid unnecessary dependencies and reduce compile overhead. ```suggestion #include "vec/columns/column_variant.h" #include "vec/core/field.h" #include "vec/data_types/data_type_array.h" ``` -- 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]
