├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── COPYRIGHT ├── Formula ├── pg_migrate_postgresql@10.rb ├── pg_migrate_postgresql@11.rb ├── pg_migrate_postgresql@12.rb ├── pg_migrate_postgresql@13.rb ├── pg_migrate_postgresql@14.rb └── pg_migrate_postgresql@9.6.rb ├── META.json ├── Makefile ├── README.md ├── SPECS └── pg_repack90.spec ├── bin ├── .gitignore ├── Makefile ├── pg_migrate.c └── pgut │ ├── pgut-fe.c │ ├── pgut-fe.h │ ├── pgut.c │ └── pgut.h ├── ci └── key.gpg.pub ├── doc ├── .gitignore ├── Makefile ├── pg_repack.rst ├── release.rst └── style.css ├── lib ├── .gitignore ├── Makefile ├── exports.txt ├── migrate.c ├── migrate.h ├── pg_migrate.control.in ├── pg_migrate.sql.in └── pgut │ ├── pgut-be.h │ ├── pgut-spi.c │ └── pgut-spi.h ├── nfpm.yaml.tmpl └── regress ├── Makefile ├── expected ├── after_schema.out ├── after_schema_1.out ├── check.out ├── init_extension.out ├── migrate_run.out ├── migrate_setup.out ├── nosuper.out ├── ordered_indexes.out ├── tablespace.out └── tablespace_1.out ├── sql ├── after_schema.sql ├── check.sql ├── init_extension.sql ├── migrate_run.sql ├── migrate_setup.sql ├── nosuper.sql ├── ordered_indexes.sql └── tablespace.sql ├── travis_prepare.sh └── travis_test.sh /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@10.rb -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@11.rb -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@12.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@12.rb -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@13.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@13.rb -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@14.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@14.rb -------------------------------------------------------------------------------- /Formula/pg_migrate_postgresql@9.6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Formula/pg_migrate_postgresql@9.6.rb -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/README.md -------------------------------------------------------------------------------- /SPECS/pg_repack90.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/SPECS/pg_repack90.spec -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/pg_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/pg_migrate.c -------------------------------------------------------------------------------- /bin/pgut/pgut-fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/pgut/pgut-fe.c -------------------------------------------------------------------------------- /bin/pgut/pgut-fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/pgut/pgut-fe.h -------------------------------------------------------------------------------- /bin/pgut/pgut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/pgut/pgut.c -------------------------------------------------------------------------------- /bin/pgut/pgut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/bin/pgut/pgut.h -------------------------------------------------------------------------------- /ci/key.gpg.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/ci/key.gpg.pub -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /*.html 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/pg_repack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/doc/pg_repack.rst -------------------------------------------------------------------------------- /doc/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/doc/release.rst -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/doc/style.css -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/exports.txt -------------------------------------------------------------------------------- /lib/migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/migrate.c -------------------------------------------------------------------------------- /lib/migrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/migrate.h -------------------------------------------------------------------------------- /lib/pg_migrate.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/pg_migrate.control.in -------------------------------------------------------------------------------- /lib/pg_migrate.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/pg_migrate.sql.in -------------------------------------------------------------------------------- /lib/pgut/pgut-be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/pgut/pgut-be.h -------------------------------------------------------------------------------- /lib/pgut/pgut-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/pgut/pgut-spi.c -------------------------------------------------------------------------------- /lib/pgut/pgut-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/lib/pgut/pgut-spi.h -------------------------------------------------------------------------------- /nfpm.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/nfpm.yaml.tmpl -------------------------------------------------------------------------------- /regress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/Makefile -------------------------------------------------------------------------------- /regress/expected/after_schema.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/after_schema.out -------------------------------------------------------------------------------- /regress/expected/after_schema_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/after_schema_1.out -------------------------------------------------------------------------------- /regress/expected/check.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/check.out -------------------------------------------------------------------------------- /regress/expected/init_extension.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/init_extension.out -------------------------------------------------------------------------------- /regress/expected/migrate_run.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/migrate_run.out -------------------------------------------------------------------------------- /regress/expected/migrate_setup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/migrate_setup.out -------------------------------------------------------------------------------- /regress/expected/nosuper.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/nosuper.out -------------------------------------------------------------------------------- /regress/expected/ordered_indexes.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/ordered_indexes.out -------------------------------------------------------------------------------- /regress/expected/tablespace.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/tablespace.out -------------------------------------------------------------------------------- /regress/expected/tablespace_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/expected/tablespace_1.out -------------------------------------------------------------------------------- /regress/sql/after_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/after_schema.sql -------------------------------------------------------------------------------- /regress/sql/check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/check.sql -------------------------------------------------------------------------------- /regress/sql/init_extension.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/init_extension.sql -------------------------------------------------------------------------------- /regress/sql/migrate_run.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/migrate_run.sql -------------------------------------------------------------------------------- /regress/sql/migrate_setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/migrate_setup.sql -------------------------------------------------------------------------------- /regress/sql/nosuper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/nosuper.sql -------------------------------------------------------------------------------- /regress/sql/ordered_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/ordered_indexes.sql -------------------------------------------------------------------------------- /regress/sql/tablespace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/sql/tablespace.sql -------------------------------------------------------------------------------- /regress/travis_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/travis_prepare.sh -------------------------------------------------------------------------------- /regress/travis_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillbaker/pg_migrate/HEAD/regress/travis_test.sh --------------------------------------------------------------------------------