This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
from a8e0f977e1 [pick] es catalog Unexpected exception (#19064) new 09b6dfaa6e [fix](olap) fix lost disable_auto_compaction info when fe restart (#18757) new a46c845cbb [Fix](vertical compaction) Preserve _segment_num_rows during final segment flush (#18779) new e3da0c0e91 [bug](bdbje) Add retry for reSetupBdbEnvironment() `restore.execute()` (#18777) new bdc564b1fc [fix](planner) Failed to create table with CTAS when multiple varchar type filed as key (#18814) new c0d8ed56ac [refactor](jdbc) using jvm parameters to init jdbc datasource (#18670) new c3244c5fa5 [refactor](jdbc) close datasource if no need to maintain the cache (#18724) new 32cd764ae0 [fix](jdbc catalog) Use default value if the user does not set the pool parameter in be.conf #18919 new 19d97ae1ed [fix](planner) NPE when use ctas to create table (#18973) new 5ec2437c2f [fix](planner) SetOperationNode's slots' nullability calculation is wrong (#19108) new 90efc2e031 [Fix](Planner) fix throw NPE when parse error (#19097) new a028b49c6b [bugfix](txn_manager) use write lock to protect txn_tablet_map (#19161) new 359e2a2343 [fix](planner) AnalyticEvalNode should call child's getOutputTupleIds method to get the correct output tuple id (#19163) new a97d1168d5 [fix](fe)fix bug if left table is empty and there are multiple right tables need do bucket shuffle to left side (#19169) new 5c26ac2c7a [fix](dynamic-partition) create HOUR unit partition with DATEV2 throw exception (#19213) new 8d628eaf63 [bugfix](low cardinality) cached code is wrong will result wrong query result when many null pages (#19221) The 15 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/common/config.h | 1 + be/src/olap/comparison_predicate.h | 20 +++- be/src/olap/rowset/vertical_beta_rowset_writer.cpp | 5 +- be/src/olap/txn_manager.cpp | 2 +- be/src/vec/columns/column_dictionary.h | 4 +- conf/be.conf | 4 +- .../apache/doris/analysis/FunctionCallExpr.java | 5 + .../org/apache/doris/analysis/StmtRewriter.java | 3 +- .../org/apache/doris/catalog/TableProperty.java | 3 +- .../doris/common/util/DynamicPartitionUtil.java | 9 +- .../apache/doris/datasource/InternalCatalog.java | 9 +- .../apache/doris/journal/bdbje/BDBJEJournal.java | 23 ++++- .../org/apache/doris/planner/AnalyticEvalNode.java | 2 +- .../org/apache/doris/planner/SetOperationNode.java | 3 +- .../main/java/org/apache/doris/qe/Coordinator.java | 4 +- fe/fe-core/src/main/jflex/sql_scanner.flex | 3 + .../analysis/CreateTableAsSelectStmtTest.java | 2 +- .../doris/catalog/DynamicPartitionTableTest.java | 53 ++++++++++ .../java/org/apache/doris/udf/JdbcExecutor.java | 30 ++++-- .../correctness_p0/test_union_subquery_groupby.out | 3 + .../data/nereids_p0/test_dict_with_null.out | 112 +++++++++++++++++++++ .../data/query_p0/test_dict_with_null.out | 112 +++++++++++++++++++++ .../test_union_subquery_groupby.groovy | 48 +++++++++ .../test_window_function_with_project.groovy | 109 ++++++++++++++++++++ regression-test/suites/ddl_p0/test_ctas.groovy | 88 ++++++++++++++++ .../suites/query_p0/test_dict_with_null.groovy | 5 +- 26 files changed, 630 insertions(+), 32 deletions(-) create mode 100644 regression-test/data/nereids_p0/test_dict_with_null.out create mode 100644 regression-test/data/query_p0/test_dict_with_null.out create mode 100644 regression-test/suites/correctness_p0/test_window_function_with_project.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org