Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix](iceberg) Fill in the detailed error information #45415

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public List<String> listDatabaseNames() {
.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);
}
}

Expand All @@ -125,7 +125,7 @@ public void createDb(CreateDbStmt stmt) throws DdlException {
});
} 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);
}
}

Expand Down Expand Up @@ -161,7 +161,7 @@ public void dropDb(DropDbStmt stmt) throws DdlException {
});
} 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);
}
}

Expand All @@ -184,7 +184,8 @@ public boolean createTable(CreateTableStmt stmt) throws UserException {
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;
}
Expand Down Expand Up @@ -228,7 +229,8 @@ public void dropTable(DropTableStmt stmt) throws DdlException {
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);
}
}

Expand Down
Loading