Skip to content

Commit

Permalink
Fix bug QueryStatement return null when getRedirectStatus (#8087)
Browse files Browse the repository at this point in the history
(cherry picked from commit ddcebdc)
  • Loading branch information
HangyuanLiu authored and murphyatwork committed Nov 5, 2023
1 parent fd39cfc commit fede177
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public <R, C> R accept(AstVisitor<R, C> visitor, C context) {

@Override
public RedirectStatus getRedirectStatus() {
return null;
return RedirectStatus.NO_FORWARD;
}
}

0 comments on commit fede177

Please sign in to comment.