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

hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 004ff9efb33 [hotfix](chore) fe build error caused by merging (#53964)
004ff9efb33 is described below

commit 004ff9efb335054ed4aa52c1c3aa8a06dea3a627
Author: zy-kkk <[email protected]>
AuthorDate: Mon Jul 28 14:03:52 2025 +0800

    [hotfix](chore) fe build error caused by merging (#53964)
    
    https://github.com/apache/doris/pull/53571 use executionAuthenticator
    replace preExecutionAuthenticator
    
    https://github.com/apache/doris/pull/53486 still use
    preExecutionAuthenticator
    
    this pr fix it
---
 .../java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java
 
b/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java
index 46ae00d4e74..a0938592204 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergMetadataOps.java
@@ -257,7 +257,7 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
     @Override
     public boolean createTableImpl(CreateTableInfo createTableInfo) throws 
UserException {
         try {
-            return preExecutionAuthenticator.execute(() -> 
performCreateTable(createTableInfo));
+            return executionAuthenticator.execute(() -> 
performCreateTable(createTableInfo));
         } catch (Exception e) {
             throw new DdlException(
                 "Failed to create table: " + createTableInfo.getTableName() + 
", error message is:" + e.getMessage(),


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

Reply via email to