diff --git a/paimon-core/src/main/java/org/apache/paimon/jdbc/JdbcCatalog.java b/paimon-core/src/main/java/org/apache/paimon/jdbc/JdbcCatalog.java index 6d409d585f219..ab8291313adbe 100644 --- a/paimon-core/src/main/java/org/apache/paimon/jdbc/JdbcCatalog.java +++ b/paimon-core/src/main/java/org/apache/paimon/jdbc/JdbcCatalog.java @@ -239,7 +239,7 @@ protected void dropTableImpl(Identifier identifier) { protected void createTableImpl(Identifier identifier, Schema schema) { checkArgument( !schema.options().containsKey(CoreOptions.PATH.key()), - "The FileSystemCatalog does not support specifying location when creating a table."); + "The JdbcCatalog does not support specifying location when creating a table."); try { // create table file getSchemaManager(identifier).createTable(schema);