ldap_fdw
ldap_fdw copied to clipboard
improve columns declaration and usage
Some ways to use:
CREATE FOREIGN TABLE xxxx (
dn text,
object_body text
) .... OPTIONS ( ... , exclude_attributes 'userPassword, homeDirectory')
Columns could be declared explicitly so ldap_fdw retrieve only them.
CREATE FOREIGN TABLE xxxx (
dn text,
homeDirectory text[]
) ....