[jOOQ/jOOQ#11374] Fixed regression leading to StackOverflowError

This commit is contained in:
Lukas Eder 2021-02-09 14:43:35 +01:00
parent ee05f720d0
commit 8ed33197de

View File

@ -125,7 +125,7 @@ implements
private final void accept0(Context<?> ctx) {
if (createSchemaIfNotExists && !supportsIfNotExists(ctx))
tryCatch(ctx, DDLStatementType.CREATE_SCHEMA, c -> accept0(c));
tryCatch(ctx, DDLStatementType.CREATE_SCHEMA, c -> accept1(c));
else
accept1(ctx);
}