Skip to content

Commit b17ea76

Browse files
committed
fix: update paths were not installed in dbdev install command
1 parent 9f6c64e commit b17ea76

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)