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 b7d2431ac3 [fix](having) revert 15143 and fix having clause with
multi-conditions (#15745)
new 221149e590 fix(ui): 1. fix component/table can not change
pageSize,affect system/query profile/session page etc. (#15533)
new 4b69d20152 [fix](tvf) use virtual-hosted style when
s3('uri'='s3://xxx') (#15617)
new 3e700f325e [fix](planner) disconjunct in sub-query failed when plan it
on hash join (#15653)
new 7e9222733a [feature-wip](multi-catalog) add iceberg tvf to read
snapshots (#15618)
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/exec_node.cpp | 10 +-
be/src/runtime/plan_fragment_executor.cpp | 4 +-
be/src/vec/CMakeLists.txt | 2 +
...{new_odbc_scan_node.cpp => vmeta_scan_node.cpp} | 48 +++--
.../{new_file_scan_node.h => vmeta_scan_node.h} | 26 ++-
be/src/vec/exec/scan/vmeta_scanner.cpp | 209 +++++++++++++++++++++
.../scan/{new_jdbc_scanner.h => vmeta_scanner.h} | 38 ++--
.../apache/doris/planner/SingleNodePlanner.java | 2 +-
.../doris/planner/external/MetadataScanNode.java | 114 +++++++++++
.../apache/doris/service/FrontendServiceImpl.java | 93 +++++++++
.../apache/doris/statistics/StatisticalType.java | 1 +
.../tablefunction/IcebergTableValuedFunction.java | 123 ++++++++++++
.../MetadataTableValuedFunction.java} | 31 +--
.../doris/tablefunction/S3TableValuedFunction.java | 4 +-
.../doris/tablefunction/TableValuedFunctionIf.java | 2 +
gensrc/thrift/FrontendService.thrift | 9 +
gensrc/thrift/PlanNodes.thrift | 18 +-
ui/src/api/api.ts | 64 ++++---
ui/src/components/table/index.tsx | 48 ++---
ui/src/i18n.tsx | 15 +-
ui/src/pages/configuration/index.tsx | 37 ++--
ui/src/pages/logs/index.tsx | 56 +++---
.../playground/content/components/data-prev.tsx | 85 +++++----
ui/src/pages/playground/page-side/index.tsx | 20 +-
ui/src/pages/playground/tree/index.tsx | 164 ++++++++--------
ui/src/pages/query-profile/index.tsx | 80 ++++----
ui/src/pages/session/index.tsx | 45 +++--
ui/src/pages/system/index.tsx | 61 +++---
ui/src/utils/lazy.tsx | 17 +-
ui/src/utils/utils.ts | 37 ++--
ui/tsconfig.json | 94 ++++-----
31 files changed, 1098 insertions(+), 459 deletions(-)
copy be/src/vec/exec/scan/{new_odbc_scan_node.cpp => vmeta_scan_node.cpp} (50%)
copy be/src/vec/exec/scan/{new_file_scan_node.h => vmeta_scan_node.h} (73%)
create mode 100644 be/src/vec/exec/scan/vmeta_scanner.cpp
copy be/src/vec/exec/scan/{new_jdbc_scanner.h => vmeta_scanner.h} (60%)
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/planner/external/MetadataScanNode.java
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/tablefunction/IcebergTableValuedFunction.java
copy
fe/fe-core/src/main/java/org/apache/doris/{common/profile/PlanTreeNode.java =>
tablefunction/MetadataTableValuedFunction.java} (54%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]