diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index a376d6bd3e..626ef294bd 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -8620,7 +8620,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTable(String table); /** @@ -8628,7 +8628,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTable(Name table); /** @@ -8636,7 +8636,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTable(Table table); /** @@ -8644,7 +8644,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTableIfNotExists(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTableIfNotExists(String table); /** @@ -8652,7 +8652,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTableIfNotExists(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTableIfNotExists(Name table); /** @@ -8660,7 +8660,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createTemporaryTableIfNotExists(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createTemporaryTableIfNotExists(Table table); /** @@ -8668,7 +8668,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createGlobalTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createGlobalTemporaryTable(String table); /** @@ -8676,7 +8676,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createGlobalTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createGlobalTemporaryTable(Name table); /** @@ -8684,7 +8684,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#createGlobalTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) CreateTableColumnStep createGlobalTemporaryTable(Table table); /** @@ -9660,7 +9660,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTable(String table); /** @@ -9668,7 +9668,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTable(Name table); /** @@ -9676,7 +9676,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTable(Table table); /** @@ -9684,7 +9684,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTableIfExists(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTableIfExists(String table); /** @@ -9692,7 +9692,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTableIfExists(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTableIfExists(Name table); /** @@ -9700,7 +9700,7 @@ public interface DSLContext extends Scope , AutoCloseable { * * @see DSL#dropTemporaryTableIfExists(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) DropTableStep dropTemporaryTableIfExists(Table table); /** diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index 22f5ebb785..3e8dabf720 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -6697,7 +6697,7 @@ public class DSL { * * @see DSLContext#createTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTable(String table) { return dsl().createTemporaryTable(table); } @@ -6707,7 +6707,7 @@ public class DSL { * * @see DSLContext#createTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTable(Name table) { return dsl().createTemporaryTable(table); } @@ -6717,7 +6717,7 @@ public class DSL { * * @see DSLContext#createTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTable(Table table) { return dsl().createTemporaryTable(table); } @@ -6727,7 +6727,7 @@ public class DSL { * * @see DSLContext#createTemporaryTableIfNotExists(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTableIfNotExists(String table) { return dsl().createTemporaryTableIfNotExists(table); } @@ -6737,7 +6737,7 @@ public class DSL { * * @see DSLContext#createTemporaryTableIfNotExists(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTableIfNotExists(Name table) { return dsl().createTemporaryTableIfNotExists(table); } @@ -6747,7 +6747,7 @@ public class DSL { * * @see DSLContext#createTemporaryTableIfNotExists(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createTemporaryTableIfNotExists(Table table) { return dsl().createTemporaryTableIfNotExists(table); } @@ -6757,7 +6757,7 @@ public class DSL { * * @see DSLContext#createGlobalTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createGlobalTemporaryTable(String table) { return dsl().createGlobalTemporaryTable(table); } @@ -6767,7 +6767,7 @@ public class DSL { * * @see DSLContext#createGlobalTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createGlobalTemporaryTable(Name table) { return dsl().createGlobalTemporaryTable(table); } @@ -6777,7 +6777,7 @@ public class DSL { * * @see DSLContext#createGlobalTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static CreateTableColumnStep createGlobalTemporaryTable(Table table) { return dsl().createGlobalTemporaryTable(table); } @@ -7808,7 +7808,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTable(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTable(String table) { return dsl().dropTemporaryTable(table); } @@ -7818,7 +7818,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTable(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTable(Name table) { return dsl().dropTemporaryTable(table); } @@ -7828,7 +7828,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTable(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTable(Table table) { return dsl().dropTemporaryTable(table); } @@ -7838,7 +7838,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTableIfExists(String) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTableIfExists(String table) { return dsl().dropTemporaryTableIfExists(table); } @@ -7848,7 +7848,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTableIfExists(Name) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTableIfExists(Name table) { return dsl().dropTemporaryTableIfExists(table); } @@ -7858,7 +7858,7 @@ public class DSL { * * @see DSLContext#dropTemporaryTableIfExists(Table) */ - @Support({ MARIADB, MYSQL, POSTGRES }) + @Support({ FIREBIRD, MARIADB, MYSQL, POSTGRES }) public static DropTableStep dropTemporaryTableIfExists(Table table) { return dsl().dropTemporaryTableIfExists(table); }