Skip to content

Commit d0b8aab

Browse files
committed
Fix Checkstyle violations: remove trailing whitespace in ExplainAnalyzeOperator
1 parent 0cbf29e commit d0b8aab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

presto-main-base/src/main/java/com/facebook/presto/operator/ExplainAnalyzeOperator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,14 @@ public Page getOutput()
149149

150150
QueryInfo queryInfo = queryPerformanceFetcher.getQueryInfo(operatorContext.getDriverContext().getTaskId().getQueryId());
151151
checkState(queryInfo.getOutputStage().isPresent(), "Output stage is missing");
152-
152+
153153
List<StageInfo> subStages = queryInfo.getOutputStage().get().getSubStages();
154154
checkState(!subStages.isEmpty(), "Expected at least one sub stage of explain node");
155155

156156
if (!hasFinalStageInfo(queryInfo.getOutputStage().get())) {
157157
return null;
158158
}
159-
159+
160160
String plan;
161161
switch (format) {
162162
case TEXT:
@@ -224,7 +224,7 @@ private String generateTextPlanForSubStages(List<StageInfo> subStages)
224224
// Single sub stage - use existing logic
225225
return textDistributedPlan(subStages.get(0), functionAndTypeManager, operatorContext.getSession(), verbose);
226226
}
227-
227+
228228
// Multiple sub stages - generate plan for each and combine
229229
StringBuilder combinedPlan = new StringBuilder();
230230
for (int i = 0; i < subStages.size(); i++) {
@@ -243,7 +243,7 @@ private String generateJsonPlanForSubStages(List<StageInfo> subStages)
243243
// Single sub stage - use existing logic
244244
return jsonDistributedPlan(subStages.get(0), functionAndTypeManager, operatorContext.getSession());
245245
}
246-
246+
247247
// Multiple sub stages - generate JSON array containing all plans
248248
StringBuilder jsonArray = new StringBuilder();
249249
jsonArray.append("[");

0 commit comments

Comments
 (0)