ldap_fdw icon indicating copy to clipboard operation
ldap_fdw copied to clipboard

improve columns declaration and usage

Open guedes opened this issue 12 years ago • 0 comments

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[]
) .... 

guedes avatar Jan 26 '13 22:01 guedes