[jOOQ/jOOQ#9574] Support referencing synonyms from foreign keys in interpreter

This commit is contained in:
Lukas Eder 2024-10-01 18:19:09 +02:00
parent 8f689c6a1c
commit 55f51fc6bd

View File

@ -1800,7 +1800,18 @@ final class Interpreter {
}
final MutableTable table(Named t) {
return find(tables, t);
MutableTable mt = find(tables, t);
return mt;
}
final MutableDomain domain(Named d) {