Skip to content

Commit cd822b7

Browse files
committed
SQL: Fix incorrect merging of elastic#35852
1 parent 633a562 commit cd822b7

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys

1 file changed

+1
-1
lines changed

x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysTypesTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class SysTypesTests extends ESTestCase {
3333
private Tuple<Command, SqlSession> sql(String sql) {
3434
EsIndex test = new EsIndex("test", TypesTests.loadMapping("mapping-multi-field-with-nested.json", true));
3535
Analyzer analyzer = new Analyzer(new FunctionRegistry(), IndexResolution.valid(test), TimeZone.getTimeZone("UTC"), null);
36-
Command cmd = (Command) analyzer.analyze(parser.createStatement(sql), true);
36+
Command cmd = (Command) analyzer.analyze(parser.createStatement(sql), false);
3737

3838
IndexResolver resolver = mock(IndexResolver.class);
3939
SqlSession session = new SqlSession(null, null, null, resolver, null, null, null, null);

0 commit comments

Comments
 (0)