[jOOQ/jOOQ#11166] Wrong SQL generated for Informix STDDEV_SAMP and

VAR_SAMP
This commit is contained in:
Lukas Eder 2020-12-23 10:51:51 +01:00
parent f6db048fad
commit bed6563095
4 changed files with 7 additions and 2 deletions

View File

@ -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);

View File

@ -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");

View File

@ -97,6 +97,9 @@ extends
default:
super.acceptFunctionName(ctx);
break;

View File

@ -99,8 +99,6 @@ extends
default:
super.acceptFunctionName(ctx);
break;