[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 09:21:26 +02:00
parent 7cef85f670
commit 67fcee7266

View File

@ -102,6 +102,12 @@ implements
case MARIADB:
case MYSQL:
return true;
case CLICKHOUSE:
return true;
@ -135,6 +141,13 @@ implements
case MARIADB:
case MYSQL:
ctx.visit(function(N_DATABASE, getDataType()));
break;
case CLICKHOUSE:
ctx.visit(function(N_currentDatabase, getDataType()));
break;