diff --git a/cli/src/commands/install.rs b/cli/src/commands/install.rs index 497b6acb..bbdb4167 100644 --- a/cli/src/commands/install.rs +++ b/cli/src/commands/install.rs @@ -125,7 +125,7 @@ async fn update_paths( extension_name: &str, ) -> anyhow::Result> { let mut rows = sqlx::query_as::<_, UpdatePath>( - "select source, target from pgtle.extension_update_paths($1);", + "select source, target from pgtle.extension_update_paths($1) where path is not null;", ) .bind(extension_name) .fetch(conn);