├── .gitignore ├── META.json ├── Makefile ├── README.md ├── doc └── ldap_fdw.md ├── ldap_fdw.control ├── sql ├── ldap_fdw.sql └── uninstall_ldap_fdw.sql ├── src ├── ldap_fdw.c └── ldap_fdw.h └── test ├── expected └── base.out └── sql └── base.sql /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | tags 3 | -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/README.md -------------------------------------------------------------------------------- /doc/ldap_fdw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/doc/ldap_fdw.md -------------------------------------------------------------------------------- /ldap_fdw.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/ldap_fdw.control -------------------------------------------------------------------------------- /sql/ldap_fdw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/sql/ldap_fdw.sql -------------------------------------------------------------------------------- /sql/uninstall_ldap_fdw.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ldap_fdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/src/ldap_fdw.c -------------------------------------------------------------------------------- /src/ldap_fdw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/src/ldap_fdw.h -------------------------------------------------------------------------------- /test/expected/base.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/test/expected/base.out -------------------------------------------------------------------------------- /test/sql/base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guedes/ldap_fdw/HEAD/test/sql/base.sql --------------------------------------------------------------------------------