Skip to content

Commit

Permalink
[BugFix] Fix bug QueryStatement return null when getRedirectStatus (b…
Browse files Browse the repository at this point in the history
…ackport #8087) (#34356)

Co-authored-by: HangyuanLiu <[email protected]>
  • Loading branch information
murphyatwork and HangyuanLiu authored Nov 5, 2023
1 parent fd39cfc commit f85bfb1
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 f85bfb1

Please sign in to comment.