[jOOQ/jOOQ#14722] Add bitwise aggregate function support for Vertica
This commit is contained in:
parent
4941d75b59
commit
08861900a9
@ -253,6 +253,18 @@ implements
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
@ -253,6 +253,18 @@ implements
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
@ -253,6 +253,18 @@ implements
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
else
|
||||
super.accept(ctx);
|
||||
}
|
||||
|
||||
@ -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");
|
||||
|
||||
@ -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()))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user