mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 19:19:35 -05:00
SLAP_NVALUES: disable indexing for now
This commit is contained in:
parent
32a38866b7
commit
511a94d98c
1 changed files with 5 additions and 1 deletions
|
|
@ -178,11 +178,15 @@ mr_add(
|
|||
smr->smr_oidlen = strlen( mr->mr_oid );
|
||||
smr->smr_usage = def->mrd_usage;
|
||||
smr->smr_compat_syntaxes = compat_syn;
|
||||
smr->smr_convert = def->mrd_convert;
|
||||
smr->smr_normalize = def->mrd_normalize;
|
||||
smr->smr_match = def->mrd_match;
|
||||
#ifdef SLAP_NVALUES
|
||||
/* disable indexing for now */
|
||||
#else
|
||||
smr->smr_convert = def->mrd_convert;
|
||||
smr->smr_indexer = def->mrd_indexer;
|
||||
smr->smr_filter = def->mrd_filter;
|
||||
#endif
|
||||
smr->smr_associated = amr;
|
||||
|
||||
if ( smr->smr_syntax_oid ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue