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

Add support for JDBI bind list params. #955

Merged
merged 3 commits into from
Oct 2, 2021

Commits on Oct 1, 2021

  1. jdbi_list_param Add support for JDBI bind list params.

    JDBI bind list params are in the format: `IN(<ids>)`. Previously the formatter would break these up:
    
    ```
    IN(
      < ids >
    )
    ```
    
    Which breaks the JDBI integration. This will no longer happen in the case that there is a `<` then a NAME type token then `>`
    dylanbaroody committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    704e6ce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    daa9a18 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2021

  1. formatting

    dylanbaroody committed Oct 2, 2021
    Configuration menu
    Copy the full SHA
    9c0cf78 View commit details
    Browse the repository at this point in the history