From 2327516eaa677d7fe20ff35725dd1c686c4ac9a2 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 28 May 2019 16:26:03 +0200 Subject: [PATCH] [jOOQ/jOOQ#8709] Work around Vertica's incorrect IS NOT NULL implementation --- jOOQ/src/main/java/org/jooq/impl/RowIsNull.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jOOQ/src/main/java/org/jooq/impl/RowIsNull.java b/jOOQ/src/main/java/org/jooq/impl/RowIsNull.java index b157fab4f2..1f35722d4f 100644 --- a/jOOQ/src/main/java/org/jooq/impl/RowIsNull.java +++ b/jOOQ/src/main/java/org/jooq/impl/RowIsNull.java @@ -59,6 +59,7 @@ import static org.jooq.SQLDialect.MYSQL; import static org.jooq.SQLDialect.SQLITE; // ... // ... +// ... import static org.jooq.impl.Keywords.K_IS_NOT_NULL; import static org.jooq.impl.Keywords.K_IS_NULL; @@ -110,7 +111,7 @@ final class RowIsNull extends AbstractCondition { private final QueryPartInternal delegate(Configuration configuration) { - // CUBRID 9.0.0 and HSQLDB have buggy implementations of the NULL predicate. + // CUBRID 9, HSQLDB, and Vertica have incorrect implementations of the NULL predicate. // Informix doesn't implement the RVE IS NULL predicate. if (EMULATE_NULL.contains(configuration.family())) { Field[] fields = row.fields();