Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make CALL YIELD grammar more precise #1852

Merged
merged 1 commit into from
May 17, 2024

Commits on May 7, 2024

  1. Make CALL YIELD grammar more precise

    Replaces `CALL expr . expr` to `CALL expr_var . expr_func_norm`. There was
    a if-block before that checked if the first `expr` is a ColumnRef and the
    second `expr` is a FuncCall node. That check is not need now since expr_var
    and expr_func_norm are reduced to ColumnRef and FuncCall node respectively.
    
    This change also prevents shift\reduce ambiguity with CALL subquery syntax.
    rafsun42 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    74a21fd View commit details
    Browse the repository at this point in the history