Skip to content

Commit 583b514

Browse files
committed
drop and recreate vectorscale
1 parent 4d95556 commit 583b514

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

extension/tests/util.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ pub mod common {
5454
.expect("failed to create extension");
5555

5656
// Optional dependencies
57+
let _ = sqlx::query("DROP EXTENSION IF EXISTS vectorscale CASCADE")
58+
.execute(&conn)
59+
.await
60+
.expect("failed to drop vectorscale extension");
5761
let _ = sqlx::query("CREATE EXTENSION IF NOT EXISTS vectorscale CASCADE")
5862
.execute(&conn)
5963
.await

0 commit comments

Comments
 (0)