[jOOQ/jOOQ#11166] Wrong SQL generated for Informix STDDEV_SAMP and
VAR_SAMP
This commit is contained in:
parent
f6db048fad
commit
bed6563095
@ -109,6 +109,8 @@ abstract class AbstractFetchable<R extends Record> extends AbstractQueryPart imp
|
||||
return fetch().iterator();
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public final CompletionStage<Result<R>> fetchAsync() {
|
||||
return fetchAsync(Tools.configuration(this).executorProvider().provide());
|
||||
@ -147,6 +149,7 @@ abstract class AbstractFetchable<R extends Record> extends AbstractQueryPart imp
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public final <T> List<T> fetch(Field<T> field) {
|
||||
return fetch().getValues(field);
|
||||
|
||||
@ -269,6 +269,7 @@ final class Names {
|
||||
static final Name N_STDDEV_SAMP = unquotedName("stddev_samp");
|
||||
static final Name N_STDEV = unquotedName("stdev");
|
||||
static final Name N_STDEVP = unquotedName("stdevp");
|
||||
static final Name N_STDEV_SAMP = unquotedName("stdev_samp");
|
||||
static final Name N_STRFTIME = unquotedName("strftime");
|
||||
static final Name N_STRING_AGG = unquotedName("string_agg");
|
||||
static final Name N_STRREVERSE = unquotedName("strreverse");
|
||||
|
||||
@ -97,6 +97,9 @@ extends
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
default:
|
||||
super.acceptFunctionName(ctx);
|
||||
break;
|
||||
|
||||
@ -99,8 +99,6 @@ extends
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
default:
|
||||
super.acceptFunctionName(ctx);
|
||||
break;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user