xy720 commented on code in PR #13020: URL: https://github.com/apache/doris/pull/13020#discussion_r982215785
########## be/src/vec/columns/column_nullable.cpp: ########## @@ -570,6 +570,16 @@ ColumnPtr remove_nullable(const ColumnPtr& column) { if (is_column_nullable(*column)) { return reinterpret_cast<const ColumnNullable*>(column.get())->get_nested_column_ptr(); } + + if (is_column_const(*column)) { Review Comment: Why not put this in a new method in column_const.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: 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