sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: Expected `SELECT` at the beginning of SQL filter, got `FROM` instead

         = help: SQL filter must start with `SELECT` followed by columns, table and WHERE clause
         = note: It is case insensitive so `select` will also work.

 --> tests/ui/fail/missing_select.rs:5:9
  |
5 |         FROM users WHERE  // Missing SELECT clause
  |         ^^^^

error[E0433]: failed to resolve: use of undeclared type `UserFilter`
  --> tests/ui/fail/missing_select.rs:11:19
   |
11 |     let _filter = UserFilter::new(1);
   |                   ^^^^^^^^^^ use of undeclared type `UserFilter`