[jOOQ/jOOQ#17341] Add support for DSL.currentCatalog() in MariaDB,

MemSQL, MySQL via the DATABASE() function
This commit is contained in:
Lukas Eder 2024-09-24 10:58:40 +02:00
parent 67fcee7266
commit 6b007ad73e

View File

@ -23181,7 +23181,7 @@ public class DSL {
* The CURRENT_CATALOG of the current session
*/
@NotNull
@Support({ CLICKHOUSE, FIREBIRD, POSTGRES, SQLITE, YUGABYTEDB })
@Support({ CLICKHOUSE, FIREBIRD, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB })
public static Field<String> currentCatalog() {
return new CurrentCatalog();
}