[jOOQ/jOOQ#13104] Fixed catalog mapping regression

This commit is contained in:
Lukas Eder 2022-02-18 13:17:00 +01:00
parent 19df0b866f
commit 1a3217c14a

View File

@ -3196,7 +3196,7 @@ final class Tools {
*/
static final Catalog getMappedCatalog(Scope scope, Catalog catalog) {
if (scope != null)
scope.configuration().schemaMapping().map(catalog);
return scope.configuration().schemaMapping().map(catalog);
return catalog;
}