Skip to content

Commit c42ba2a

Browse files
authored
Merge pull request #132 from supabase/fix-missing-install-paths
fix: update paths were not installed in dbdev install command
2 parents 0607282 + b17ea76 commit c42ba2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/commands/install.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async fn update_paths(
125125
extension_name: &str,
126126
) -> anyhow::Result<HashSet<UpdatePath>> {
127127
let mut rows = sqlx::query_as::<_, UpdatePath>(
128-
"select source, target from pgtle.extension_update_paths($1);",
128+
"select source, target from pgtle.extension_update_paths($1) where path is not null;",
129129
)
130130
.bind(extension_name)
131131
.fetch(conn);

0 commit comments

Comments
 (0)