├── .gitignore ├── Makefile ├── README.AtomicVisibility.md ├── README.md ├── connection.c ├── expected ├── postgres_fdw.out └── postgres_fdw_plus.out ├── option.c ├── patch └── 0001-Add-GUC-parameter-for-Atomic-Visibility-feature.patch ├── postgres_fdw ├── .gitignore ├── COMMIT ├── Makefile ├── connection.c ├── deparse.c ├── expected │ └── postgres_fdw.out ├── meson.build ├── option.c ├── postgres_fdw--1.0--1.1.sql ├── postgres_fdw--1.0.sql ├── postgres_fdw.c ├── postgres_fdw.control ├── postgres_fdw.h ├── shippable.c └── sql │ └── postgres_fdw.sql ├── postgres_fdw_plus--1.0.sql ├── postgres_fdw_plus.c ├── postgres_fdw_plus.control ├── postgres_fdw_plus.h └── sql ├── postgres_fdw.sql └── postgres_fdw_plus.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.AtomicVisibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/README.AtomicVisibility.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/README.md -------------------------------------------------------------------------------- /connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/connection.c -------------------------------------------------------------------------------- /expected/postgres_fdw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/expected/postgres_fdw.out -------------------------------------------------------------------------------- /expected/postgres_fdw_plus.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/expected/postgres_fdw_plus.out -------------------------------------------------------------------------------- /option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/option.c -------------------------------------------------------------------------------- /patch/0001-Add-GUC-parameter-for-Atomic-Visibility-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/patch/0001-Add-GUC-parameter-for-Atomic-Visibility-feature.patch -------------------------------------------------------------------------------- /postgres_fdw/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /postgres_fdw/COMMIT: -------------------------------------------------------------------------------- 1 | 65db0cfb4c 2 | -------------------------------------------------------------------------------- /postgres_fdw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/Makefile -------------------------------------------------------------------------------- /postgres_fdw/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/connection.c -------------------------------------------------------------------------------- /postgres_fdw/deparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/deparse.c -------------------------------------------------------------------------------- /postgres_fdw/expected/postgres_fdw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/expected/postgres_fdw.out -------------------------------------------------------------------------------- /postgres_fdw/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/meson.build -------------------------------------------------------------------------------- /postgres_fdw/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/option.c -------------------------------------------------------------------------------- /postgres_fdw/postgres_fdw--1.0--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/postgres_fdw--1.0--1.1.sql -------------------------------------------------------------------------------- /postgres_fdw/postgres_fdw--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/postgres_fdw--1.0.sql -------------------------------------------------------------------------------- /postgres_fdw/postgres_fdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/postgres_fdw.c -------------------------------------------------------------------------------- /postgres_fdw/postgres_fdw.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/postgres_fdw.control -------------------------------------------------------------------------------- /postgres_fdw/postgres_fdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/postgres_fdw.h -------------------------------------------------------------------------------- /postgres_fdw/shippable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/shippable.c -------------------------------------------------------------------------------- /postgres_fdw/sql/postgres_fdw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw/sql/postgres_fdw.sql -------------------------------------------------------------------------------- /postgres_fdw_plus--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw_plus--1.0.sql -------------------------------------------------------------------------------- /postgres_fdw_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw_plus.c -------------------------------------------------------------------------------- /postgres_fdw_plus.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw_plus.control -------------------------------------------------------------------------------- /postgres_fdw_plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/postgres_fdw_plus.h -------------------------------------------------------------------------------- /sql/postgres_fdw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/sql/postgres_fdw.sql -------------------------------------------------------------------------------- /sql/postgres_fdw_plus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgfdwplus/postgres_fdw_plus/HEAD/sql/postgres_fdw_plus.sql --------------------------------------------------------------------------------