Skip to content

Commit

Permalink
Revert proper
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Jan 16, 2025
1 parent 06d3f4c commit b68f1f4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 230 deletions.
180 changes: 0 additions & 180 deletions docs/reference/esql/functions/kibana/definition/mv_sort.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions docs/reference/esql/functions/types/mv_sort.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,15 @@ protected static Iterable<Object[]> parameterSuppliersFromTypedDataWithDefaultCh
protected static Iterable<Object[]> parameterSuppliersFromTypedDataWithDefaultChecks(
ExpectedType nullsExpectedType,
ExpectedEvaluatorToString evaluatorToString,
List<TestCaseSupplier> suppliers
List<TestCaseSupplier> suppliers,
PositionalErrorMessageSupplier positionalErrorMessageSupplier
) {
return parameterSuppliersFromTypedData(anyNullIsNull(randomizeBytesRefsOffset(suppliers), nullsExpectedType, evaluatorToString));
return parameterSuppliersFromTypedData(
errorsForCasesWithoutExamples(
anyNullIsNull(randomizeBytesRefsOffset(suppliers), nullsExpectedType, evaluatorToString),
positionalErrorMessageSupplier
)
);
}

public final void testEvaluate() {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ public static Iterable<Object[]> parameters() {
? DataType.NULL
: original.expectedType(),
(nullPosition, nullData, original) -> original,
cases
cases,
(v, p) -> "numeric except unsigned_long"
);
}

Expand Down

0 comments on commit b68f1f4

Please sign in to comment.