This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match.csv-spec | |
new file mode 100644 | |
index 00000000000..80e07e33b5c | |
--- /dev/null | |
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match.csv-spec | |
@@ -0,0 +1,21 @@ | |
+keyword | |
+required_capability: match | |
+ | |
+FROM employees |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo '{ | |
"settings": { | |
"mapping.total_fields.limit": 20000, | |
"number_of_shards": 10, | |
"number_of_replicas": 0 | |
}, | |
"mappings": { | |
"properties": { | |
"f00000": {"type": "long"}' > /tmp/idx | |
for f in {1..9999}; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo '{ | |
"settings": { | |
"mapping.total_fields.limit": 10000, | |
"number_of_shards": 10, | |
"number_of_replicas": 0 | |
}, | |
"mappings": { | |
"properties": { | |
"f00000": {"type": "long"}' > /tmp/idx | |
for f in {1..9999}; do printf ', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9999 88554519 | |
10000 50371270 | |
10001 38541319 | |
10002 39801368 | |
10003 105265018 | |
10004 75872406 | |
10005 76313387 | |
10006 34805274 | |
10007 32499921 | |
10008 107037209 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit d3b9d0f11cdaf9d21a08fcad85d43fe2ffcb72ab | |
Author: Nik Everett <[email protected]> | |
Date: Mon Feb 28 14:45:33 2022 -0500 | |
Hack? | |
diff --git a/libs/x-content/impl/.gitignore b/libs/x-content/impl/.gitignore | |
new file mode 100644 | |
index 00000000000..39a06683b73 | |
--- /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libs/x-content/src/main/java/org/elasticsearch/xcontent/internal/ProviderLocator.java b/libs/x-content/src/main/java/org/elasticsearch/xcontent/internal/ProviderLocator.java | |
index 07839e6d815..8a8a8db1ae7 100644 | |
--- a/libs/x-content/src/main/java/org/elasticsearch/xcontent/internal/ProviderLocator.java | |
+++ b/libs/x-content/src/main/java/org/elasticsearch/xcontent/internal/ProviderLocator.java | |
@@ -26,12 +26,16 @@ import java.nio.file.Path; | |
import java.security.AccessController; | |
import java.security.PrivilegedActionException; | |
import java.security.PrivilegedExceptionAction; | |
+import java.util.ArrayList; | |
import java.util.Arrays; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.NoClassDefFoundError: MappedFieldType | |
at java.base/java.lang.Class.getDeclaredMethods0(Native Method) | |
at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402) | |
at java.base/java.lang.Class.getDeclaredMethods(Class.java:2504) | |
at com.carrotsearch.randomizedtesting.ClassModel$3.members(ClassModel.java:215) | |
at com.carrotsearch.randomizedtesting.ClassModel$3.members(ClassModel.java:212) | |
at com.carrotsearch.randomizedtesting.ClassModel$ModelBuilder.build(ClassModel.java:85) | |
at com.carrotsearch.randomizedtesting.ClassModel.methodsModel(ClassModel.java:224) | |
at com.carrotsearch.randomizedtesting.ClassModel.<init>(ClassModel.java:207) | |
at com.carrotsearch.randomizedtesting.RandomizedRunner.<init>(RandomizedRunner.java:321) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.ExceptionInInitializerError | |
at __randomizedtesting.SeedInfo.seed([61A82060788B4636:5BB4AD9B01473B0A]:0) | |
at org.elasticsearch.xcontent.spi.XContentProvider.provider(XContentProvider.java:75) | |
at org.elasticsearch.xcontent.json.JsonXContent.<clinit>(JsonXContent.java:22) | |
at org.elasticsearch.xcontent.XContentFactory.xContentType(XContentFactory.java:285) | |
at org.elasticsearch.xcontent.XContentFactory.xContentType(XContentFactory.java:266) | |
at org.elasticsearch.xcontent.internal.CborTests.testCBORBasedOnMajorObjectDetection(CborTests.java:27) | |
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) | |
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/main/java/com/fasterxml/jackson/core/filter/TokenFilter.java b/src/main/java/com/fasterxml/jackson/core/filter/TokenFilter.java | |
index 3e747491..468bf25c 100644 | |
--- a/src/main/java/com/fasterxml/jackson/core/filter/TokenFilter.java | |
+++ b/src/main/java/com/fasterxml/jackson/core/filter/TokenFilter.java | |
@@ -432,6 +432,14 @@ public class TokenFilter | |
return _includeScalar(); | |
} | |
+ public boolean includeEmptyArray(boolean contentsFiltered) { | |
+ return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metricset": { "properies": { | |
"name": { | |
"type": "keyword", | |
"dimension": { "order": 1 } | |
} | |
}}, | |
"kubernetes": { "properties": { | |
"pod": { | |
"name": { |
NewerOlder