Ranking functions have upper case names, all of a sudden

This commit is contained in:
Lukas Eder 2021-06-24 12:05:12 +02:00
parent 3270182be6
commit bbee09c20d

View File

@ -136,7 +136,7 @@ final class RankingFunction<T> extends AbstractWindowFunction<T> {
private final Name name;
RankingType() {
this.name = DSL.unquotedName(name());
this.name = DSL.unquotedName(name().toLowerCase());
}
}
}