From 019312fc243b8d0df9a9bb6e01a97dee8adf78c1 Mon Sep 17 00:00:00 2001 From: carlosdelest Date: Thu, 14 Nov 2024 17:18:23 +0100 Subject: [PATCH] Fixed signature SVG --- docs/reference/esql/functions/signature/match_operator.svg | 1 - .../esql/expression/function/AbstractFunctionTestCase.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 docs/reference/esql/functions/signature/match_operator.svg diff --git a/docs/reference/esql/functions/signature/match_operator.svg b/docs/reference/esql/functions/signature/match_operator.svg deleted file mode 100644 index 3ba814bf439a..000000000000 --- a/docs/reference/esql/functions/signature/match_operator.svg +++ /dev/null @@ -1 +0,0 @@ -field:value \ No newline at end of file diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractFunctionTestCase.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractFunctionTestCase.java index e351330de920..7802d74d2264 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractFunctionTestCase.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractFunctionTestCase.java @@ -869,7 +869,7 @@ public static void renderDocs() throws IOException { return; } String name = functionName(); - if (binaryOperator(name) != null || unaryOperator(name) != null || likeOrInOperator(name)) { + if (binaryOperator(name) != null || unaryOperator(name) != null || searchOperator(name) != null || likeOrInOperator(name)) { renderDocsForOperators(name); return; }