Skip to content

Commit

Permalink
Merge pull request #5945 from neondatabase/release-2023-11-28-hotfix
Browse files Browse the repository at this point in the history
Release 2023 11 28 hotfix
  • Loading branch information
shanyp authored Nov 28, 2023
2 parents 2709685 + e81fc59 commit a113c3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compute_tools/src/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;
Expand Down
1 change: 1 addition & 0 deletions pgxn/neon/neon.control
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
comment = 'cloud storage for PostgreSQL'
default_version = '1.1'
module_pathname = '$libdir/neon'
relocatable = true

1 comment on commit a113c3e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2424 tests run: 2293 passed, 0 failed, 131 skipped (full report)


Flaky tests (3)

Postgres 16

Postgres 15

Code coverage (full report)

  • functions: 54.1% (9003 of 16635 functions)
  • lines: 81.6% (52511 of 64384 lines)

The comment gets automatically updated with the latest test results
a113c3e at 2023-11-28T06:52:04.666Z :recycle:

Please sign in to comment.