[jOOQ/jOOQ#9574] Make sure tables and synonyms are in the same namespace
This commit is contained in:
parent
55f51fc6bd
commit
81a77edd01
@ -1111,6 +1111,10 @@ final class Interpreter {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1366,11 +1370,19 @@ final class Interpreter {
|
||||
}
|
||||
|
||||
private static final DataDefinitionException notExists(Named named) {
|
||||
return new DataDefinitionException(named.getClass().getSimpleName() + " does not exist: " + named.getQualifiedName());
|
||||
return notExists(named.getClass().getSimpleName(), named);
|
||||
}
|
||||
|
||||
private static final DataDefinitionException alreadyExists(Named named) {
|
||||
return new DataDefinitionException(named.getClass().getSimpleName() + " already exists: " + named.getQualifiedName());
|
||||
return alreadyExists(named.getClass().getSimpleName(), named);
|
||||
}
|
||||
|
||||
private static final DataDefinitionException notExists(String type, Named named) {
|
||||
return new DataDefinitionException(type + " does not exist: " + named.getQualifiedName());
|
||||
}
|
||||
|
||||
private static final DataDefinitionException alreadyExists(String type, Named named) {
|
||||
return new DataDefinitionException(type + " already exists: " + named.getQualifiedName());
|
||||
}
|
||||
|
||||
private static final DataDefinitionException primaryKeyNotExists(Named named) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user