[jOOQ/jOOQ#9650] SNOWFLAKE support WIP

This commit is contained in:
Lukas Eder 2020-12-21 17:03:32 +01:00
parent 4c3e8fb74d
commit 639f389446
3 changed files with 5 additions and 3 deletions

View File

@ -48,6 +48,7 @@ import static org.jooq.SQLDialect.H2;
import static org.jooq.SQLDialect.MARIADB;
// ...
import static org.jooq.SQLDialect.POSTGRES;
// ...
import static org.jooq.SQLDialect.SQLITE;
// ...

View File

@ -37,9 +37,6 @@
*/
package org.jooq;
import org.jetbrains.annotations.*;
// ...
// ...
// ...
@ -55,6 +52,7 @@ import static org.jooq.SQLDialect.MARIADB;
import static org.jooq.SQLDialect.MYSQL;
// ...
import static org.jooq.SQLDialect.POSTGRES;
// ...
import static org.jooq.SQLDialect.SQLITE;
// ...
// ...
@ -62,6 +60,8 @@ import static org.jooq.SQLDialect.SQLITE;
import java.util.Map;
import org.jetbrains.annotations.NotNull;
/**
* This type is used for the {@link Insert}'s DSL API.
* <p>

View File

@ -1485,6 +1485,7 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
case CUBRID: