Skip to content

Commit

Permalink
chore: Fixed Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Weijun-H committed Oct 2, 2024
1 parent 76c660b commit 2b16c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ async fn test_view_foreign_table(mut conn: PgConnection, tempdir: TempDir) -> Re
// fully pushdown to the DuckDB
"CREATE VIEW primitive_view AS SELECT * FROM primitive".execute(&mut conn);
let res: (bool,) = "SELECT boolean_col FROM primitive_view".fetch_one(&mut conn);
assert_eq!(res.0, true);
assert!(res.0);

// cannot fully pushdown to the DuckDB
"CREATE TABLE t1 (a int);".execute(&mut conn);
Expand Down

0 comments on commit 2b16c9b

Please sign in to comment.