postgres
postgres copied to clipboard
Unmodified Postgres with some useful plugins
# Bug report ``` nix flake check -L ``` Raises the following error about 70% of the time when running reapeatedly
# Bug report - [x] I confirm this is a bug with Supabase, not with my own application. - [x] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and...
The migration test docs https://github.com/supabase/postgres/blob/develop/nix/docs/migration-tests.md Have an example showing how to reference builds by git sha ``` OLD_GIT_VERSION=... NEW_GIT_VERSION=... nix run github:supabase/nix-postgres#migration-test \ $(nix build "github:supabase/nix-postgres/$OLD_GIT_VERSION#psql_15/bin") \ $(nix build "github:supabase/nix-postgres/$NEW_GIT_VERSION#psql_15/bin")...
# Chore ## Describe the chore wal-g 3.0 is released, we can upgrade it
Upgrades wal-g from v2 to v3.0.3 for oriole support resolves #1082 Tasks: - [ ] verify backup flows continue to work
Creates a test script that can be used for evaluating if a pause/restore will work. We should be able to execute it using ``` OLD_GIT_VERSION=47d598f6be65cd5b920ae807cf98c401ed5ae045 NEW_GIT_VERSION=47d598f6be65cd5b920ae807cf98c401ed5ae045 nix run github:supabase/nix-postgres#migration-test \...
# Bug report - [x] I confirm this is a bug with Supabase, not with my own application. - [x] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and...
* Will unfortunately not work for PG13 (using pg_net v0.1 as it doesn't support configurable batch sizes)
## What kind of change does this PR introduce? This PR adds the new `supabase-admin-agent` to the AMI build process. This binary helps to manage various aspects of a running...
Build multiple versions of the index_advisor extension on different PostgreSQL versions. Add test for the extensions and their upgrade on PostgreSQL 15 and 17.