[jOOQ/jOOQ#12307] Wrong result for Field.getQualifiedName() on aliased

field(Name)
This commit is contained in:
Lukas Eder 2021-08-16 09:10:13 +02:00
parent 3f03607274
commit 80448b79bf
2 changed files with 6 additions and 1 deletions

View File

@ -76,6 +76,11 @@ final class FieldAlias<T> extends AbstractField<T> {
return true;
}
@Override
public Name getQualifiedName() {
return getUnqualifiedName();
}
/**
* Get the aliased field wrapped by this field.
*/

View File

@ -159,7 +159,7 @@ final class TableAlias<R extends Record> extends AbstractTable<R> {
@Override
public Name getQualifiedName() {
return super.getUnqualifiedName();
return getUnqualifiedName();
}
@Override