[#8280] Add CTE support for SQLite
This commit is contained in:
parent
9033455512
commit
af0b6c7a8e
@ -47,6 +47,7 @@ import static org.jooq.SQLDialect.MYSQL_8_0;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
// ...
|
||||
@ -92,6 +93,6 @@ public interface WithAsStep {
|
||||
/**
|
||||
* Associate a subselect with a common table expression's table and column names.
|
||||
*/
|
||||
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL_8_0, POSTGRES })
|
||||
@Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL_8_0, POSTGRES, SQLITE })
|
||||
WithStep as(Select<?> select);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user