sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
Documentation
error: Expected `IN` after `NOT`, found `NULL`
 --> tests/ui/fail-try-parse-nightly/invalid_not_in_operator.rs:6:17
  |
6 |         age NOT NULL AND i32  // Invalid operator
  |                 ^^^^
  |
  = help: Supported operators are: =, !=, >, <, >=, <=, LIKE, ILIKE, IN, NOT IN

error: Unknown operator `I32`, expected one of `AND`, `OR`, or `NOT`
 --> tests/ui/fail-try-parse-nightly/invalid_not_in_operator.rs:3:1
  |
3 | / sql_filter! {
4 | |     pub struct UserFilter {
5 | |         SELECT * FROM users WHERE
6 | |         age NOT NULL AND i32  // Invalid operator
7 | |     }
8 | | }
  | |_^
  |
  = note: this error originates in the macro `sql_filter` (in Nightly builds, run with -Z macro-backtrace for more info)