File: unsupported-type.rs

package info (click to toggle)
rust-sqlx 0.8.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,744 kB
  • sloc: sql: 335; python: 268; sh: 71; makefile: 2
file content (5 lines) | stat: -rw-r--r-- 202 bytes parent folder | download
1
2
3
4
5
fn main() {
    // we're probably not going to get around to the geometric types anytime soon
    let _ = sqlx::query!("select null::circle");
    let _ = sqlx::query!("select $1::circle", panic!());
}