Skip to content

Commit 05610a9

Browse files
committed
fix: correct cargo check failure
1 parent bba615d commit 05610a9

File tree

1 file changed

+1
-1
lines changed
  • examples/vector_extension/src

1 file changed

+1
-1
lines changed

examples/vector_extension/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async fn main() -> Result<()> {
3737

3838
println!("Configuring the vector extension");
3939
sqlx::query("CREATE EXTENSION vectors")
40-
.execute(pool)
40+
.execute(&pool)
4141
.await?;
4242

4343
println!("Stopping database");

0 commit comments

Comments
 (0)