File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 148148import static org .hamcrest .Matchers .notNullValue ;
149149import static org .hamcrest .Matchers .startsWith ;
150150
151- @ TestLogging (value = "org.elasticsearch.xpack.esql.analysis:TRACE" , reason = "debug" )
151+ // @TestLogging(value = "org.elasticsearch.xpack.esql.analysis:TRACE", reason = "debug")
152152public class AnalyzerTests extends ESTestCase {
153153
154154 private static final UnresolvedRelation UNRESOLVED_RELATION = new UnresolvedRelation (
@@ -2946,16 +2946,6 @@ public void testFromEnrichAndMatchColonUsage() {
29462946 assertEquals (esRelation .indexPattern (), "test" );
29472947 }
29482948
2949- public void testSnippets () {
2950- LogicalPlan plan = analyze ("""
2951- from test
2952- | EVAL x = extract_snippets(first_name, "text", 1, 10)
2953- | KEEP x
2954- """ );
2955- var limit = as (plan , Limit .class );
2956- var filter = as (limit .child (), Filter .class );
2957- }
2958-
29592949 public void testFunctionNamedParamsAsFunctionArgument () {
29602950 LogicalPlan plan = analyze ("""
29612951 from test
You can’t perform that action at this time.
0 commit comments