Merge pull request #5945 from neondatabase/release-2023-11-28-hotfix

Release 2023 11 28 hotfix
This commit is contained in:
Shany Pozin
2023-11-28 08:14:59 +02:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -687,6 +687,9 @@ pub fn handle_extension_neon(client: &mut Client) -> Result<()> {
info!("create neon extension with query: {}", query);
client.simple_query(query)?;
query = "UPDATE pg_extension SET extrelocatable = true WHERE extname = 'neon'";
client.simple_query(query)?;
query = "ALTER EXTENSION neon SET SCHEMA neon";
info!("alter neon extension schema with query: {}", query);
client.simple_query(query)?;

View File

@@ -2,3 +2,4 @@
comment = 'cloud storage for PostgreSQL'
default_version = '1.1'
module_pathname = '$libdir/neon'
relocatable = true