We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daaca52 commit 1ffbfdbCopy full SHA for 1ffbfdb
paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/migrate/HiveMigrator.java
@@ -136,7 +136,8 @@ public void deleteOriginTable(boolean deleteOriginTable) {
136
@Override
137
public void executeMigrate() throws Exception {
138
if (!client.tableExists(sourceDatabase, sourceTable)) {
139
- throw new RuntimeException("Source hive table does not exist");
+ throw new RuntimeException(
140
+ String.format("Source hive table %s does not exist", sourceTable));
141
}
142
143
Table sourceHiveTable = client.getTable(sourceDatabase, sourceTable);
0 commit comments