We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d95556 commit 583b514Copy full SHA for 583b514
1 file changed
extension/tests/util.rs
@@ -54,6 +54,10 @@ pub mod common {
54
.expect("failed to create extension");
55
56
// Optional dependencies
57
+ let _ = sqlx::query("DROP EXTENSION IF EXISTS vectorscale CASCADE")
58
+ .execute(&conn)
59
+ .await
60
+ .expect("failed to drop vectorscale extension");
61
let _ = sqlx::query("CREATE EXTENSION IF NOT EXISTS vectorscale CASCADE")
62
.execute(&conn)
63
.await
0 commit comments