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

morningman pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 4ddf3b08298 branch-3.0: [fix](iceberg) Fill in the detailed error 
information #45415 (#45687)
4ddf3b08298 is described below

commit 4ddf3b08298f3c94f2bf1e34cf44055e62e451d4
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 20 13:31:41 2024 +0800

    branch-3.0: [fix](iceberg) Fill in the detailed error information #45415 
(#45687)
    
    Cherry-picked from #45415
    
    Co-authored-by: wuwenchi <wuwen...@selectdb.com>
---
 .../apache/doris/datasource/iceberg/IcebergMetadataOps.java  | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

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 440a671afe5..da61b2ac1ab 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
@@ -104,7 +104,7 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
                    .map(n -> n.level(n.length() - 1))
                    .collect(Collectors.toList()));
         } catch (Exception e) {
-            throw new RuntimeException("Failed to list database names, error 
message is: " + e.getMessage());
+            throw new RuntimeException("Failed to list database names, error 
message is:" + e.getMessage(), e);
         }
     }
 
@@ -125,7 +125,7 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
             });
         } catch (Exception e) {
             throw new DdlException("Failed to create database: "
-                    + stmt.getFullDbName() + " ,error message is: " + 
e.getMessage());
+                    + stmt.getFullDbName() + ", error message is:" + 
e.getMessage(), e);
         }
     }
 
@@ -161,7 +161,7 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
             });
         } catch (Exception e) {
             throw new DdlException(
-                "Failed to drop database: " + stmt.getDbName() + ", error 
message is: " + e.getMessage(), e);
+                "Failed to drop database: " + stmt.getDbName() + ", error 
message is:" + e.getMessage(), e);
         }
     }
 
@@ -184,7 +184,8 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
         try {
             preExecutionAuthenticator.execute(() -> performCreateTable(stmt));
         } catch (Exception e) {
-            throw new DdlException("Failed to create table: " + 
stmt.getTableName() + " ,error message is:", e);
+            throw new DdlException(
+                "Failed to create table: " + stmt.getTableName() + ", error 
message is:" + e.getMessage(), e);
         }
         return false;
     }
@@ -228,7 +229,8 @@ public class IcebergMetadataOps implements 
ExternalMetadataOps {
                 return null;
             });
         } catch (Exception e) {
-            throw new DdlException("Failed to drop table: " + 
stmt.getTableName() + " ,error message is:", e);
+            throw new DdlException(
+                "Failed to drop table: " + stmt.getTableName() + ", error 
message is:" + e.getMessage(), e);
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to