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 0e3ad5cd9de [fix](parquet) fix time zone error(isAdjustedToUTC=true) in parquet reader (#33675) (#33924) new 03c3419265a [Refactor](executor)Add workload schedule policy table (#33729) new 36a70ba1e79 [Fix](Csv-Reader)Fix the issue of BE core dump caused by improper configuration of column_seperator and line_delimiter. (#33693) new 27662c3d628 [fix](row-count-cache) use cached row count for show (#33911) new 60253c827c0 [fix](nereids) do not push RF into nested cte (#33769) The 4 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/exec/schema_scanner.cpp | 50 ++++++++ be/src/exec/schema_scanner.h | 4 + .../schema_workload_groups_scanner.cpp | 29 +---- .../schema_workload_sched_policy_scanner.cpp | 136 +++++++++++++++++++++ ...er.h => schema_workload_sched_policy_scanner.h} | 14 +-- be/src/vec/exec/format/csv/csv_reader.cpp | 8 +- fe/fe-core/src/main/cup/sql_parser.cup | 4 - .../org/apache/doris/analysis/SchemaTableType.java | 6 +- .../analysis/ShowWorkloadSchedPolicyStmt.java | 59 --------- .../java/org/apache/doris/catalog/SchemaTable.java | 10 ++ .../main/java/org/apache/doris/catalog/Table.java | 5 + .../java/org/apache/doris/catalog/TableIf.java | 5 + .../doris/datasource/ExternalMetaCacheMgr.java | 2 +- .../doris/datasource/ExternalRowCountCache.java | 24 ++++ .../org/apache/doris/datasource/ExternalTable.java | 13 ++ .../processor/post/RuntimeFilterGenerator.java | 13 +- .../java/org/apache/doris/qe/ShowExecutor.java | 13 +- .../apache/doris/service/FrontendServiceImpl.java | 2 +- .../doris/tablefunction/MetadataGenerator.java | 19 ++- .../tablefunction/MetadataTableValuedFunction.java | 2 - .../doris/tablefunction/TableValuedFunctionIf.java | 2 - .../WorkloadSchedPolicyTableValuedFunction.java | 89 -------------- .../doris/datasource/RefreshCatalogTest.java | 4 +- gensrc/thrift/Descriptors.thrift | 3 +- gensrc/thrift/FrontendService.thrift | 1 + .../jdbc/test_mariadb_jdbc_catalog.out | 1 + .../jdbc/test_mysql_jdbc_catalog.out | 1 + .../jdbc/test_mysql_jdbc_catalog_nereids.out | 1 + .../jdbc/test_mysql_jdbc_driver5_catalog.out | 1 + .../data/load_p0/stream_load/special_seperator.csv | 2 + .../stream_load/test_csv_special_seperator.out | 5 + .../data/nereids_syntax_p0/runtime_filter.out | 39 ++++++ .../test_workload_sched_policy.out | 2 +- .../org/apache/doris/regression/suite/Suite.groovy | 11 ++ .../stream_load/test_csv_special_seperator.groovy | 69 +++++++++++ .../suites/nereids_syntax_p0/runtime_filter.groovy | 69 +++++++++++ .../suites/tpch_sf0.1_p1/sql/cse.groovy | 3 + .../workload_manager_p0/test_curd_wlg.groovy | 6 +- .../test_workload_sched_policy.groovy | 6 +- 39 files changed, 506 insertions(+), 227 deletions(-) create mode 100644 be/src/exec/schema_scanner/schema_workload_sched_policy_scanner.cpp copy be/src/exec/schema_scanner/{schema_routine_scanner.h => schema_workload_sched_policy_scanner.h} (78%) delete mode 100644 fe/fe-core/src/main/java/org/apache/doris/analysis/ShowWorkloadSchedPolicyStmt.java delete mode 100644 fe/fe-core/src/main/java/org/apache/doris/tablefunction/WorkloadSchedPolicyTableValuedFunction.java create mode 100644 regression-test/data/load_p0/stream_load/special_seperator.csv create mode 100644 regression-test/data/load_p0/stream_load/test_csv_special_seperator.out create mode 100644 regression-test/data/nereids_syntax_p0/runtime_filter.out create mode 100644 regression-test/suites/load_p0/stream_load/test_csv_special_seperator.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org