Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/datafusion-sqlparser-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: rptr/sqlparser-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 2, 2021

  1. Support parsing VARBINARY, BINARY, BLOB, CLOB

    * add parser support for already-defined data types
    * add required precision parameter function
    rasmus-vaultree committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    fd65e61 View commit details
    Browse the repository at this point in the history
  2. BINARY precision is optional

    Reference: https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html
    
    <binary string type> ::=
        BINARY [ <left paren>  <length>  <right paren>  ]
      | (...)
    rasmus-vaultree committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    e84ca22 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2021

  1. Support BIT data type

    Reference: https://jakewheat.github.io/sql-overview/sql-1999-grammar.html
    
    <bit string type> ::=
             BIT [ <left paren>  <length>  <right paren>  ]
          | (...)
    
    Supported in at least MySQL version 8
    
    https://dev.mysql.com/doc/refman/8.0/en/bit-type.html
    rasmus-vaultree committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    ce22800 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. Parse JSON type

    rasmus-vaultree committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    f7b133a View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2022

  1. JSON operators

    rasmus-vaultree committed Jan 20, 2022
    Configuration menu
    Copy the full SHA
    a7de3c8 View commit details
    Browse the repository at this point in the history
Loading