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

Allow trailing commas in types with several items #59119

Merged
merged 2 commits into from Jan 30, 2024

Commits on Jan 26, 2024

  1. Added parsing trailing symbols for type expressions

    ```sql
    SELECT (1, 'foo')::Tuple(a Int, b String,);
    SELECT (1, 'foo')::Tuple(Int, String,);
    SELECT (1, (2,'foo'))::Tuple(Int, Tuple(Int, String,),);
    ````
    
    fix
    AVMusorin committed Jan 26, 2024
    Copy the full SHA
    e635223 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Restart CI

    yariks5s committed Jan 29, 2024
    Copy the full SHA
    9f2093d View commit details
    Browse the repository at this point in the history