Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 23, 2024
1 parent ea7d742 commit df6085f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -641,10 +641,10 @@ public String getExplainString(ExplainOptions explainOptions) {
}
if (statementContext != null) {
if (statementContext.isHasUnknownColStats()) {
plan += "\nplaned with unknown column statistics\n";
plan += "\n========== JOIN ORDER ==========\nplaned with unknown column statistics\n";
}
if (statementContext.getDisableJoinReorderReason().isPresent()) {
plan += "\ndisable join reorder reason\n";
plan += "\n=== DISABLE JOIN ORDER REASON ===\n";
plan += statementContext.getDisableJoinReorderReason().get() + "\n";
}
if (!statementContext.getHints().isEmpty()) {
Expand Down

0 comments on commit df6085f

Please sign in to comment.