diff --git a/jOOQ/src/main/java/org/jooq/EnumType.java b/jOOQ/src/main/java/org/jooq/EnumType.java index 358228dec8..a9eb0e2036 100644 --- a/jOOQ/src/main/java/org/jooq/EnumType.java +++ b/jOOQ/src/main/java/org/jooq/EnumType.java @@ -65,13 +65,31 @@ public interface EnumType { * The catalog of the enum type, if applicable. Otherwise, this returns * null */ - Catalog getCatalog(); + + default + + Catalog getCatalog() + + { + return null; + } + + ; /** * The schema of the enum type, if applicable (Postgres schema-scope enum * type only). Otherwise, this returns null */ - Schema getSchema(); + + default + + Schema getSchema() + + { + return null; + } + + ; /** * The type name as registered in the database, if applicable (Postgres