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 7d8a94604e [Bug] #14876 && #15225 have some bugs in rewrite or to in, revert them (#15420) new 740363019c [feature](BE)pad missed version with empty rowset (#15030) new b204d46615 [Improvement](JSONB) improve performance JSONB initial json parsing using simdjson (#15219) new d2fa5078b9 [bug](jdbc) fix jdbc external table with char type length error (#15386) new 5b99fee593 [Improvement](meta) update show create function result (#15414) new be513e1062 [fix](multi catalog)Set column defualt value for query. (#15415) The 5 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: .licenserc.yaml | 1 + be/CMakeLists.txt | 2 + be/src/http/CMakeLists.txt | 1 + be/src/http/action/pad_rowset_action.cpp | 105 +++++++ .../action/{meta_action.h => pad_rowset_action.h} | 27 +- be/src/runtime/jsonb_value.h | 4 +- be/src/service/http_service.cpp | 4 + be/src/util/jsonb_error.h | 10 +- be/src/util/jsonb_parser_simd.h | 350 +++++++++++++++++++++ be/src/vec/exec/scan/new_jdbc_scan_node.cpp | 7 +- be/src/vec/exec/scan/new_jdbc_scan_node.h | 1 + be/src/vec/exec/scan/new_jdbc_scanner.cpp | 7 +- be/src/vec/exec/scan/new_jdbc_scanner.h | 6 +- be/src/vec/exec/scan/vfile_scanner.cpp | 39 +-- be/src/vec/exec/vjdbc_connector.cpp | 13 +- be/src/vec/exec/vjdbc_connector.h | 1 + be/src/vec/functions/function_jsonb.cpp | 9 +- be/test/olap/tablet_test.cpp | 55 ++++ .../{restore-tablet.md => pad-rowset.md} | 12 +- docs/sidebars.json | 1 + .../{restore-tablet.md => pad_rowset.md} | 14 +- .../apache/doris/catalog/AggregateFunction.java | 35 ++- .../org/apache/doris/catalog/ScalarFunction.java | 14 +- .../org/apache/doris/planner/JdbcScanNode.java | 1 + gensrc/thrift/PlanNodes.thrift | 1 + 25 files changed, 642 insertions(+), 78 deletions(-) create mode 100644 be/src/http/action/pad_rowset_action.cpp copy be/src/http/action/{meta_action.h => pad_rowset_action.h} (71%) create mode 100644 be/src/util/jsonb_parser_simd.h copy docs/en/docs/admin-manual/http-actions/{restore-tablet.md => pad-rowset.md} (71%) copy docs/zh-CN/docs/admin-manual/http-actions/{restore-tablet.md => pad_rowset.md} (71%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org