We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0607282 + b17ea76 commit c42ba2aCopy full SHA for c42ba2a
cli/src/commands/install.rs
@@ -125,7 +125,7 @@ async fn update_paths(
125
extension_name: &str,
126
) -> anyhow::Result<HashSet<UpdatePath>> {
127
let mut rows = sqlx::query_as::<_, UpdatePath>(
128
- "select source, target from pgtle.extension_update_paths($1);",
+ "select source, target from pgtle.extension_update_paths($1) where path is not null;",
129
)
130
.bind(extension_name)
131
.fetch(conn);
0 commit comments