This is an automated email from the ASF dual-hosted git repository.

924060929 pushed a change to branch auto-pick-64160-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


    omit 36b68a401de [fix](fe) Invalidate external row counts after metadata 
changes
     add d08ff0f245c branch-4.1: [feature](hive) Support static partition 
overwrite for hive tables #65991 (#68181)
     add 35791e3b692 branch-4.1: [enhance](auth) introduction of configuration 
property to prohibit login with empty LDAP password #61440 (#68098)
     add 66ebcddb4cc [feature](lance) Support prepared vector search on 
branch-4.1 (#68162)
     add 1de45e2331d branch-4.1: [fix](regression) Enable expression pushdown 
for variant norms test (#68230)
     add 8f49d7f2bd8 branch-4.1: [fix](be) Avoid ASAN double-free during PHDR 
unwinding #68217 (#68229)
     add c4bdbe40547 [fix](fe) Invalidate external row counts after metadata 
changes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (36b68a401de)
            \
             N -- N -- N   refs/heads/auto-pick-64160-branch-4.1 (c4bdbe40547)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 be/src/common/phdr_cache.cpp                       |   5 +
 be/src/common/phdr_cache.h                         |   2 +
 be/test/common/phdr_cache_test.cpp                 |  31 ++
 conf/ldap.conf                                     |  13 +
 .../java/org/apache/doris/common/LdapConfig.java   |  10 +
 .../apache/doris/datasource/ExternalCatalog.java   |  14 +-
 .../apache/doris/datasource/ExternalDatabase.java  |   8 +-
 .../doris/datasource/ExternalMetaCacheMgr.java     |   6 +
 .../doris/datasource/ExternalRowCountCache.java    |  80 ++++-
 .../doris/datasource/hive/HiveMetadataOps.java     |   2 +
 .../doris/mysql/authenticate/ldap/LdapManager.java |   9 +
 .../nereids/analyzer/UnboundHiveTableSink.java     |  49 ++-
 .../doris/nereids/analyzer/UnboundTVFRelation.java |  33 +-
 .../nereids/analyzer/UnboundTableSinkCreator.java  |   9 +-
 .../doris/nereids/parser/LogicalPlanBuilder.java   |  29 +-
 .../nereids/rules/analysis/BindExpression.java     |  40 +++
 .../doris/nereids/rules/analysis/BindSink.java     |  92 ++++-
 .../expressions/functions/table/VectorSearch.java  |   9 +-
 .../trees/plans/commands/PrepareCommand.java       |   3 +
 .../insert/InsertOverwriteTableCommand.java        |   3 +-
 .../trees/plans/commands/insert/InsertUtils.java   |  18 +-
 .../java/org/apache/doris/qe/ConnectContext.java   |   5 +
 .../java/org/apache/doris/qe/FEOpExecutor.java     |  25 +-
 .../org/apache/doris/qe/MysqlConnectProcessor.java |  10 +
 .../VectorSearchTableValuedFunction.java           |  71 ++--
 .../ExternalMetaCacheRouteResolverTest.java        |  42 ++-
 .../datasource/ExternalRowCountCacheTest.java      | 145 ++++++--
 .../datasource/hive/HiveDDLAndDMLPlanTest.java     | 104 ++++++
 .../doris/datasource/hive/HiveMetadataOpsTest.java |  56 +++
 .../mysql/authenticate/ldap/LdapManagerTest.java   |  77 +++++
 .../nereids/parser/LancePreparedStatementTest.java |  87 +++++
 .../qe/MysqlPreparedStatementForwardingTest.java   | 148 ++++++++
 .../tablefunction/LancePreparedSearchTest.java     | 258 ++++++++++++++
 .../write/test_hive_write_static_partition.groovy  | 383 +++++++++++++++++++++
 .../lance/test_lance_prepared_vector_search.groovy | 112 ++++++
 .../test_variant_subcolumn_index_norms.groovy      |   1 +
 36 files changed, 1887 insertions(+), 102 deletions(-)
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/datasource/hive/HiveMetadataOpsTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/parser/LancePreparedStatementTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/qe/MysqlPreparedStatementForwardingTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/tablefunction/LancePreparedSearchTest.java
 create mode 100644 
regression-test/suites/external_table_p0/hive/write/test_hive_write_static_partition.groovy
 create mode 100644 
regression-test/suites/external_table_p0/lance/test_lance_prepared_vector_search.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to