mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
Fix Configuration
This commit is contained in:
parent
7a0ec86303
commit
55046dfd2d
@ -268,7 +268,8 @@ public final class Configuration {
|
||||
* @return
|
||||
*/
|
||||
public String registerTableOverride(String schema, String oldTable, String newTable) {
|
||||
return registerTableOverride(schema, oldTable, schema, newTable).getTable();
|
||||
SchemaAndTable st = registerTableOverride(schema, oldTable, schema, newTable);
|
||||
return st != null ? st.getTable() : null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user