├── .cirrus.yml ├── .clang-format ├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pg_failover_slots.c └── t ├── 010_slot_sync.pl ├── 020_physical_before_logical.pl └── 030_failover.pl /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/README.md -------------------------------------------------------------------------------- /pg_failover_slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/pg_failover_slots.c -------------------------------------------------------------------------------- /t/010_slot_sync.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/t/010_slot_sync.pl -------------------------------------------------------------------------------- /t/020_physical_before_logical.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/t/020_physical_before_logical.pl -------------------------------------------------------------------------------- /t/030_failover.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/pg_failover_slots/HEAD/t/030_failover.pl --------------------------------------------------------------------------------