[#7498] No regression / backwards incompatibility
This commit is contained in:
parent
fafe20bbf7
commit
08a5f69e19
@ -52,7 +52,6 @@ import static org.jooq.JoinType.OUTER_APPLY;
|
||||
import static org.jooq.JoinType.RIGHT_OUTER_JOIN;
|
||||
import static org.jooq.JoinType.STRAIGHT_JOIN;
|
||||
// ...
|
||||
import static org.jooq.impl.DSL.name;
|
||||
import static org.jooq.impl.DSL.table;
|
||||
import static org.jooq.impl.DSL.val;
|
||||
import static org.jooq.impl.Tools.EMPTY_FIELD;
|
||||
@ -389,7 +388,7 @@ abstract class AbstractTable<R extends Record> extends AbstractNamed implements
|
||||
if (tableschema == null)
|
||||
tableschema = getQualifiedName().qualified()
|
||||
? DSL.schema(getQualifiedName().qualifier())
|
||||
: DSL.schema(name(""));
|
||||
: null;
|
||||
|
||||
return tableschema;
|
||||
}
|
||||
|
||||
@ -37,8 +37,6 @@
|
||||
*/
|
||||
package org.jooq.impl;
|
||||
|
||||
import static org.jooq.impl.DSL.name;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Clause;
|
||||
import org.jooq.Context;
|
||||
@ -81,7 +79,7 @@ public class PackageImpl extends AbstractNamed implements Package {
|
||||
if (schema == null)
|
||||
schema = getQualifiedName().qualified()
|
||||
? DSL.schema(getQualifiedName().qualifier())
|
||||
: DSL.schema(name(""));
|
||||
: null;
|
||||
|
||||
return schema;
|
||||
}
|
||||
|
||||
@ -40,7 +40,6 @@ package org.jooq.impl;
|
||||
|
||||
import static org.jooq.Clause.SCHEMA;
|
||||
import static org.jooq.Clause.SCHEMA_REFERENCE;
|
||||
import static org.jooq.impl.DSL.name;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
@ -101,7 +100,7 @@ public class SchemaImpl extends AbstractNamed implements Schema {
|
||||
if (catalog == null)
|
||||
catalog = getQualifiedName().qualified()
|
||||
? DSL.catalog(getQualifiedName().qualifier())
|
||||
: DSL.catalog(name(""));
|
||||
: null;
|
||||
|
||||
return catalog;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user