Skip to content

Commit

Permalink
[improvement](mtmv) Optimize the materialized view hint info when exp…
Browse files Browse the repository at this point in the history
…lain
  • Loading branch information
seawinde committed Aug 27, 2024
1 parent f42e7fc commit 1aca6e5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -596,9 +596,10 @@ public String getExplainString(ExplainOptions explainOptions) {
default:
plan = super.getExplainString(explainOptions);
plan += mvSummary;
plan += "\n\n========== STATISTICS ==========\n";
if (statementContext != null) {
if (statementContext.isHasUnknownColStats()) {
plan += "\n\nStatistics\n planed with unknown column statistics\n";
plan += "planed with unknown column statistics\n";
}
}
}
Expand Down

0 comments on commit 1aca6e5

Please sign in to comment.