This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
from f99b2f0f82f [branch-2.1][hotfix](jdbc table) Restoring a table type that should not be deleted (#35434) new a82c6e869e3 [fix](Nereids) LogicalEmptyRelation type is wrong (#35382) new 2422439e453 [Update](regression) add case for inverted index (#35305) new 5ab5ec3d0d8 [Fix](inverted index) fix build index wrong size for inverted index (#35366) new b1795d44ecd [bugfix](hive)fix testcase for test_hive_write_different_path (#35209) new f98ed4e4c5b [bugfix](hive)Misspelling of class names (#34981) new 09f90128176 [Fix](hive-writer) Fix hive partition update core. (#35311) new 7284b6959f1 [Configurations](multi-catalog)Fix enable_orc_filter_by_min_max functionality, the mistake for #35012. (#35320) new 82ff29faeae [Chore](materialized-view) forbid create mv on row store table (#35360) new 68eda58a8c7 [Fix](multi-catalog) Fix string dict filtering when use null related function in parquet and orc reader. (#35335) new 6d362c10618 [fix](hint) fix hint tests with different be instances (#35188) new c44affb43f5 Add downgrade scan thread num by column num (#35351) new 596fb6f327e [improve](ub) fix some runtime error of ubsan when downcast (#35343) new d71e9d34fe9 [Bugfix] Fix mv column type is not changed when do schema change (#34598) The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: be/src/olap/task/index_builder.cpp | 2 +- be/src/pipeline/exec/aggregation_sink_operator.cpp | 6 +- .../pipeline/exec/aggregation_source_operator.cpp | 5 +- .../exec/streaming_aggregation_operator.cpp | 6 +- .../vec/aggregate_functions/aggregate_function.h | 22 +- .../aggregate_functions/aggregate_function_avg.h | 4 +- .../aggregate_function_bitmap.h | 12 +- .../aggregate_function_bitmap_agg.h | 12 +- .../aggregate_function_collect.h | 10 +- .../aggregate_functions/aggregate_function_count.h | 8 +- .../aggregate_functions/aggregate_function_map.h | 8 +- .../aggregate_function_min_max.h | 4 +- .../aggregate_functions/aggregate_function_sum.h | 4 +- .../aggregate_function_uniq_distribute_key.h | 4 +- be/src/vec/exec/format/orc/vorc_reader.cpp | 23 +-- .../exec/format/parquet/vparquet_group_reader.cpp | 21 +- be/src/vec/exec/scan/scanner_context.cpp | 22 ++ be/src/vec/exec/vaggregation_node.h | 8 +- be/src/vec/sink/writer/vhive_partition_writer.cpp | 7 +- be/src/vec/sink/writer/vhive_table_writer.cpp | 10 +- .../hive/scripts/create_preinstalled_table.hql | 42 ++++ .../test_string_dict_filter.orc | Bin 0 -> 1652 bytes .../test_string_dict_filter.parquet | Bin 0 -> 2292 bytes .../doris/alter/MaterializedViewHandler.java | 6 + .../apache/doris/alter/SchemaChangeHandler.java | 63 +++--- .../org/apache/doris/alter/SchemaChangeJobV2.java | 48 ++--- .../doris/analysis/CreateMaterializedViewStmt.java | 2 +- .../org/apache/doris/datasource/hive/HiveUtil.java | 2 +- .../trees/plans/logical/LogicalEmptyRelation.java | 2 +- .../java/org/apache/doris/qe/SessionVariable.java | 10 + .../doris/alter/MaterializedViewHandlerTest.java | 6 +- gensrc/thrift/PaloInternalService.thrift | 2 + .../external_table_p0/hive/ddl/test_hive_ctas.out | 184 +++++++++++++++++ .../hive/test_string_dict_filter.out | 229 +++++++++++++++++++++ .../hive/write/test_hive_write_different_path.out | 8 +- .../data/inverted_index_p0/test_index_rqg_bug.out | 19 ++ .../schema_change_modify_mv_column_type.out | 103 +++++++++ .../schema_change_modify_mv_column_type2.out | 75 +++++++ .../schema_change_modify_mv_column_type_agg.out | 55 +++++ .../hive/ddl/test_hive_ctas.groovy | 21 +- .../hive/test_string_dict_filter.groovy | 134 ++++++++++++ .../write/test_hive_write_different_path.groovy | 61 +++--- .../inverted_index_p0/test_index_rqg_bug.groovy | 172 ++++++++++++++++ .../mv_p0/test_row_store/test_row_store.groovy | 32 +++ .../suites/nereids_p0/hint/fix_leading.groovy | 3 + .../suites/nereids_p0/hint/multi_leading.groovy | 3 + .../suites/nereids_p0/hint/test_leading.groovy | 3 + regression-test/suites/point_query_p0/load.groovy | 25 --- .../schema_change_modify_mv_column_type.groovy} | 58 ++---- .../schema_change_modify_mv_column_type2.groovy} | 58 ++---- .../schema_change_modify_mv_column_type_agg.groovy | 97 +++++++++ 51 files changed, 1432 insertions(+), 289 deletions(-) create mode 100644 docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/orc_table/test_string_dict_filter_orc/test_string_dict_filter.orc create mode 100644 docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/parquet_table/test_string_dict_filter_parquet/test_string_dict_filter.parquet create mode 100644 regression-test/data/external_table_p0/hive/test_string_dict_filter.out create mode 100644 regression-test/data/inverted_index_p0/test_index_rqg_bug.out create mode 100644 regression-test/data/schema_change_p0/schema_change_modify_mv_column_type.out create mode 100644 regression-test/data/schema_change_p0/schema_change_modify_mv_column_type2.out create mode 100644 regression-test/data/schema_change_p0/schema_change_modify_mv_column_type_agg.out create mode 100644 regression-test/suites/external_table_p0/hive/test_string_dict_filter.groovy create mode 100644 regression-test/suites/inverted_index_p0/test_index_rqg_bug.groovy create mode 100644 regression-test/suites/mv_p0/test_row_store/test_row_store.groovy copy regression-test/suites/{point_query_p0/load.groovy => schema_change_p0/schema_change_modify_mv_column_type.groovy} (66%) copy regression-test/suites/{point_query_p0/load.groovy => schema_change_p0/schema_change_modify_mv_column_type2.groovy} (66%) create mode 100644 regression-test/suites/schema_change_p0/schema_change_modify_mv_column_type_agg.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org