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

fix(parser): json index operator with alter table #61

Merged
merged 8 commits into from
Sep 9, 2020

Commits on Sep 8, 2020

  1. fix(parser): json index operator with alter table

    Turns out `name` is an Option and that `expr` can be a more complicated
    object rather than just a string.
    
    Previously we didn't have any tests that exercised the `expr` property.
    sbdchd committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    4ea6312 View commit details
    Browse the repository at this point in the history
  2. don't use nursery since it will update with WIP lints

    e.g.
    
    ```
    error: this could be a `const fn`
    367
       --> cli/src/reporter.rs:375:1
    368
        |
    369
    375 | / fn get_violations_emoji(count: usize) -> &'static str {
    370
    376 | |     if count > 0 {
    371
    377 | |         "🚒"
    372
    378 | |     } else {
    373
    379 | |         "✅"
    374
    380 | |     }
    375
    381 | | }
    376
        | |_^
    377
        |
    378
        = note: `-D clippy::missing-const-for-fn` implied by `-D clippy::nursery`
    379
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn
        ```
    sbdchd committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    0941e76 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Configuration menu
    Copy the full SHA
    c69ed86 View commit details
    Browse the repository at this point in the history
  2. display clippy version in ci

    sbdchd committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    b47f9ef View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7112e71 View commit details
    Browse the repository at this point in the history
  4. fix lints?

    sbdchd committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    d1864d4 View commit details
    Browse the repository at this point in the history
  5. fix lint?

    sbdchd committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    7b7fb98 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3be936b View commit details
    Browse the repository at this point in the history