From af0b6c7a8e3905087cdf3be50a89ef6c13dc32cb Mon Sep 17 00:00:00 2001 From: lukaseder Date: Fri, 1 Feb 2019 16:09:00 +0100 Subject: [PATCH] [#8280] Add CTE support for SQLite --- jOOQ/src/main/java/org/jooq/WithAsStep.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jOOQ/src/main/java/org/jooq/WithAsStep.java b/jOOQ/src/main/java/org/jooq/WithAsStep.java index d21209da42..5984c7d61e 100644 --- a/jOOQ/src/main/java/org/jooq/WithAsStep.java +++ b/jOOQ/src/main/java/org/jooq/WithAsStep.java @@ -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); }