Skip to content

Commit

Permalink
cascades==null
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Dec 23, 2024
1 parent 06b07e0 commit a7621d4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -707,9 +707,10 @@ public String getExplainString(ExplainOptions explainOptions) {
+ rewrittenPlan.treeString() + "\n\n"
+ "========== OPTIMIZED PLAN "
+ getTimeMetricString(SummaryProfile::getPrettyNereidsOptimizeTime) + " ==========\n"
+ optimizedPlan.treeString() + "\n\n"
+ "========== MEMO "
+ cascadesContext.getMemo().toString() + "\n\n";
+ optimizedPlan.treeString() + "\n\n";
if (cascadesContext != null && cascadesContext.getMemo() != null) {
plan += "========== MEMO " + cascadesContext.getMemo().toString() + "\n\n";
}

if (distributedPlans != null && !distributedPlans.isEmpty()) {
plan += "========== DISTRIBUTED PLAN "
Expand Down

0 comments on commit a7621d4

Please sign in to comment.