[jOOQ/jOOQ#12905] Support BigQuery LIMIT .. OFFSET with expressions

This commit is contained in:
Lukas Eder 2023-01-04 16:27:45 +01:00
parent 6c9b91e6ed
commit 0b37dba2a0
2 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ import static org.jooq.Constants.FULL_VERSION;
import static org.jooq.ExecuteType.DDL;
// ...
// ...
// ...
import static org.jooq.SQLDialect.FIREBIRD;
import static org.jooq.SQLDialect.HSQLDB;
// ...

View File

@ -1776,6 +1776,7 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
case MARIADB: {
@ -1817,7 +1818,6 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
case CUBRID:
case YUGABYTEDB: {
if (getLimit().isApplicable() && getLimit().withTies())