From dc2fd7f1ea7f72d6edc91cc3478c32feb3614917 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Wed, 7 May 2014 11:35:32 +0200 Subject: [PATCH] [#3244] InsertQuery.setDefaultValues() is not supported by the ACCESS dialect --- jOOQ/src/main/java/org/jooq/InsertQuery.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/jOOQ/src/main/java/org/jooq/InsertQuery.java b/jOOQ/src/main/java/org/jooq/InsertQuery.java index 56efd0ed89..ce939207b5 100644 --- a/jOOQ/src/main/java/org/jooq/InsertQuery.java +++ b/jOOQ/src/main/java/org/jooq/InsertQuery.java @@ -41,12 +41,19 @@ package org.jooq; +// ... import static org.jooq.SQLDialect.CUBRID; // ... +import static org.jooq.SQLDialect.DERBY; +import static org.jooq.SQLDialect.FIREBIRD; +import static org.jooq.SQLDialect.H2; import static org.jooq.SQLDialect.HSQLDB; +// ... import static org.jooq.SQLDialect.MARIADB; import static org.jooq.SQLDialect.MYSQL; // ... +import static org.jooq.SQLDialect.POSTGRES; +import static org.jooq.SQLDialect.SQLITE; // ... // ... @@ -178,7 +185,7 @@ public interface InsertQuery extends StoreQuery, Insert /** * Set an empty record with the DEFAULT VALUES clause. */ - @Support + @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE }) void setDefaultValues(); /**