Skip to content

Commit

Permalink
fix p0 explain error
Browse files Browse the repository at this point in the history
  • Loading branch information
LiBinfeng-01 committed Aug 25, 2023
1 parent 2613004 commit 084f85c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public String getExplainString(ExplainOptions explainOptions) {
default:
plan = super.getExplainString(explainOptions);
}
if (!cascadesContext.getStatementContext().getHintMap().isEmpty()) {
if (!statementContext.getHintMap().isEmpty()) {
String hint = getHintExplainString(cascadesContext.getStatementContext().getHintMap());
return plan + hint;
}
Expand Down

0 comments on commit 084f85c

Please sign in to comment.