├── .gitignore ├── LICENSE.md ├── README.md ├── bin └── pgenv └── patch ├── 8.0 └── 8.0.plperl.patch └── index ├── patch.8.0 └── patch.8.1 /.gitignore: -------------------------------------------------------------------------------- 1 | /pgsql* 2 | /src/ 3 | /.pgenv.* -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanodnl/pgenv/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanodnl/pgenv/HEAD/README.md -------------------------------------------------------------------------------- /bin/pgenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanodnl/pgenv/HEAD/bin/pgenv -------------------------------------------------------------------------------- /patch/8.0/8.0.plperl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanodnl/pgenv/HEAD/patch/8.0/8.0.plperl.patch -------------------------------------------------------------------------------- /patch/index/patch.8.0: -------------------------------------------------------------------------------- 1 | 8.0/8.0.plperl.patch 2 | -------------------------------------------------------------------------------- /patch/index/patch.8.1: -------------------------------------------------------------------------------- 1 | 8.0/8.0.plperl.patch 2 | --------------------------------------------------------------------------------