Skip to content

Commit 3d652a4

Browse files
committed
fix forbidden apis
1 parent b19cb8c commit 3d652a4

File tree

1 file changed

+0
-6
lines changed
  • x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action

1 file changed

+0
-6
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ public void testSortAndLimitInBothSubQueries() {
134134
| SORT id, _fork
135135
""";
136136
try (var resp = run(query)) {
137-
System.out.println("response=" + resp);
138137
assertColumnNames(resp.columns(), List.of("id", "_fork", "content"));
139138
assertColumnTypes(resp.columns(), List.of("integer", "keyword", "text"));
140139
Iterable<Iterable<Object>> expectedValues = List.of(
@@ -155,7 +154,6 @@ public void testWhereWhere() {
155154
| KEEP _fork, id, content
156155
""";
157156
try (var resp = run(query)) {
158-
System.out.println("response=" + resp);
159157
assertColumnNames(resp.columns(), List.of("_fork", "id", "content"));
160158
assertColumnTypes(resp.columns(), List.of("keyword", "integer", "text"));
161159
Iterable<Iterable<Object>> expectedValues = List.of(
@@ -178,7 +176,6 @@ public void testWhereSort() {
178176
| KEEP _fork, id, content
179177
""";
180178
try (var resp = run(query)) {
181-
System.out.println("response=" + resp);
182179
assertColumnNames(resp.columns(), List.of("_fork", "id", "content"));
183180
assertColumnTypes(resp.columns(), List.of("keyword", "integer", "text"));
184181
Iterable<Iterable<Object>> expectedValues = List.of(
@@ -202,7 +199,6 @@ public void testWhereSortOnlyInFork() {
202199
| KEEP _fork, id, content
203200
""";
204201
try (var resp = run(query)) {
205-
System.out.println("response=" + resp);
206202
assertColumnNames(resp.columns(), List.of("_fork", "id", "content"));
207203
assertColumnTypes(resp.columns(), List.of("keyword", "integer", "text"));
208204
Iterable<Iterable<Object>> expectedValues = List.of(
@@ -227,7 +223,6 @@ public void testLimitOnlyInSecondSubQuery() {
227223
| KEEP _fork, id, content
228224
""";
229225
try (var resp = run(query)) {
230-
System.out.println("response=" + resp);
231226
assertColumnNames(resp.columns(), List.of("_fork", "id", "content"));
232227
assertColumnTypes(resp.columns(), List.of("keyword", "integer", "text"));
233228
Iterable<Iterable<Object>> expectedValues = List.of(
@@ -270,7 +265,6 @@ public void testScoringKeepAndSort() {
270265
| SORT id
271266
""";
272267
try (var resp = run(query)) {
273-
System.out.println("response=" + resp);
274268
assertColumnNames(resp.columns(), List.of("id", "content", "_fork", "_score"));
275269
assertColumnTypes(resp.columns(), List.of("integer", "text", "keyword", "double"));
276270
assertThat(getValuesList(resp.values()).size(), equalTo(4)); // just assert that the expected number of results

0 commit comments

Comments
 (0)