[jOOQ/jOOQ#10523] Derby doesn't support correlated derived tables
This commit is contained in:
parent
1f61ab5d97
commit
0ba49dd1ab
@ -39,6 +39,7 @@
|
||||
package org.jooq.impl;
|
||||
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.DERBY;
|
||||
import static org.jooq.SQLDialect.H2;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.MARIADB;
|
||||
@ -64,7 +65,7 @@ import org.jooq.TableOptions;
|
||||
*/
|
||||
class DerivedTable<R extends Record> extends AbstractTable<R> implements QOM.DerivedTable<R> {
|
||||
|
||||
static final Set<SQLDialect> NO_SUPPORT_CORRELATED_DERIVED_TABLE = SQLDialect.supportedUntil(H2, MARIADB);
|
||||
static final Set<SQLDialect> NO_SUPPORT_CORRELATED_DERIVED_TABLE = SQLDialect.supportedUntil(DERBY, H2, MARIADB);
|
||||
private final Select<R> query;
|
||||
|
||||
DerivedTable(Select<R> query) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user