Fixing bug in extensible filter indexing

This commit is contained in:
Sang Seok Lim 2004-12-22 01:23:27 +00:00
parent 190c17b3c8
commit e3ab329d4e

View File

@ -420,8 +420,12 @@ ext_candidates(
* Currently Only Component Indexing for componentFilterMatch is supported * Currently Only Component Indexing for componentFilterMatch is supported
* Indexing for an extensible filter is not supported yet * Indexing for an extensible filter is not supported yet
*/ */
if ( !mra->ma_cf ) if ( !mra->ma_cf ) {
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
BDB_IDL_ALL( bdb, ids );
return 0; return 0;
}
return comp_candidates ( op, mra, mra->ma_cf, ids, tmp, stack); return comp_candidates ( op, mra, mra->ma_cf, ids, tmp, stack);
} }
#endif #endif