[jOOQ/jOOQ#14722] Add bitwise aggregate function support for Vertica

This commit is contained in:
Lukas Eder 2023-02-28 16:53:48 +01:00
parent 4941d75b59
commit 08861900a9
5 changed files with 39 additions and 0 deletions

View File

@ -253,6 +253,18 @@ implements
else
super.accept(ctx);
}
else
super.accept(ctx);
}

View File

@ -253,6 +253,18 @@ implements
else
super.accept(ctx);
}
else
super.accept(ctx);
}

View File

@ -253,6 +253,18 @@ implements
else
super.accept(ctx);
}
else
super.accept(ctx);
}

View File

@ -138,6 +138,8 @@ final class Names {
static final Name N_GROUP_CONCAT = systemName("group_concat");
static final Name N_HASHBYTES = systemName("hashbytes");
static final Name N_HASH_MD5 = systemName("hash_md5");
static final Name N_HEX_TO_BINARY = systemName("hex_to_binary");
static final Name N_HEX_TO_INTEGER = systemName("hex_to_integer");
static final Name N_IF = systemName("if");
static final Name N_IIF = systemName("iif");
static final Name N_INSERT = systemName("insert");

View File

@ -1846,6 +1846,7 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
case FIREBIRD:
case MYSQL: {
if (getLimit().isApplicable() && (getLimit().withTies() || getLimit().isExpression()))