Skip to content

Commit acb7c07

Browse files
committed
fix
1 parent 0a6c2f8 commit acb7c07

File tree

1 file changed

+1
-1
lines changed
  • paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/utils

1 file changed

+1
-1
lines changed

paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/utils/CatalogUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public static void checkNoDefaultValue(TableChange.AddColumn addColumn) {
261261
"Cannot add column %s with default value %s.",
262262
Arrays.toString(addColumn.fieldNames()), defaultValue));
263263
}
264-
} catch (NoClassDefFoundError ignored) {
264+
} catch (NoClassDefFoundError | NoSuchMethodError ignored) {
265265
}
266266
}
267267

0 commit comments

Comments
 (0)