[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: commit: ldap/servers/slapd backglue.c



>
> E.g., if we have a configuration
>
> database foo
> suffix dc=c,dc=b,dc=a
> subordinate
>
> database foo
> suffix dc=a
>
> then a subtree search with base dc=b,dc=a must be performed by both
> databases in order to return a complete result set.

Absolutely. The current head (1.82) does exactly what you described above.
The second database is the one which dc=b,dc=a can reside in and
glue_back_select() will return the second database in this case.
It won't search databases superior to the second database (none in this
example though)
for the subtree search with base dc=b,dc=a
- Jong-Hyuk