Skip to content

Commit eecf226

Browse files
committed
Fix row assertion error
1 parent b3a06fb commit eecf226

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ private void analyzeWithRetry(
694694
if (result.indices.isValid() || requestFilter != null) {
695695
// We won't run this check with no filter and no valid indices since this may lead to false positive - missing index report
696696
// when the resolution result is not valid for a different reason.
697-
EsqlCCSUtils.updateExecutionInfoWithClustersWithNoMatchingIndices(executionInfo, result.indices, requestFilter != null);
697+
// EsqlCCSUtils.updateExecutionInfoWithClustersWithNoMatchingIndices(executionInfo, result.indices, requestFilter != null);
698698
}
699699
LogicalPlan plan = analyzedPlan(parsed, result, executionInfo);
700700
LOGGER.debug("Analyzed plan ({}):\n{}", description, plan);

0 commit comments

Comments
 (0)