Skip to content
Snippets Groups Projects
Commit 5ef9978a authored by Howard Chu's avatar Howard Chu
Browse files

ITS#3616 don't index the dummy context entry

parent d9ab7383
No related branches found
No related tags found
No related merge requests found
......@@ -340,6 +340,10 @@ int bdb_index_values(
{
int rc;
/* Never index ID 0 */
if ( id == 0 )
return 0;
rc = index_at_values( op, txn, desc,
desc->ad_type, &desc->ad_tags,
vals, id, opid );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment