1 2 3 4 5 6
// This should fail to compile when feature "uuid" is not enabled. // Expected error: "column type is UUID — enable feature \"uuid\" in bsql" fn main() { let id = 1i32; let _ = bsql::query!("SELECT id, ticket_uuid FROM tickets WHERE id = $id: i32"); }