Skip to content

Commit

Permalink
fix parens parse bug
Browse files Browse the repository at this point in the history
Signed-off-by: yusheng.ma <yusheng.ma@zilliz.com>
  • Loading branch information
Presburger committed May 13, 2024
1 parent cf82290 commit 618bd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class PlanCCVisitor : public PlanVisitor {
// ok
virtual std::any
visitParens(PlanParser::ParensContext* ctx) override {
return visitChildren(ctx);
return ctx->expr()->accept(this);
}
// ok
virtual std::any
Expand Down

0 comments on commit 618bd80

Please sign in to comment.