diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 4 | ||||
-rw-r--r-- | src/wherecode.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/where.c b/src/where.c index be75101b2..123c0c062 100644 --- a/src/where.c +++ b/src/where.c @@ -985,7 +985,7 @@ end_auto_index_create: ** the loop would benefit from a Bloom filter, and the WHERE_BLOOMFILTER bit ** is set. */ -static SQLITE_NOINLINE void constructBloomFilter( +static SQLITE_NOINLINE void sqlite3ConstructBloomFilter( WhereInfo *pWInfo, /* The WHERE clause */ int iLevel, /* Index in pWInfo->a[] that is pLevel */ WhereLevel *pLevel, /* Make a Bloom filter for this FROM term */ @@ -5615,7 +5615,7 @@ WhereInfo *sqlite3WhereBegin( &pTabList->a[pLevel->iFrom], notReady, pLevel); #endif }else{ - constructBloomFilter(pWInfo, ii, pLevel, notReady); + sqlite3ConstructBloomFilter(pWInfo, ii, pLevel, notReady); } if( db->mallocFailed ) goto whereBeginError; } diff --git a/src/wherecode.c b/src/wherecode.c index dd73bc4e8..f9eb7724a 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -1385,7 +1385,7 @@ static SQLITE_NOINLINE void filterPullDown( WhereLevel *pLevel = &pWInfo->a[iLevel]; WhereLoop *pLoop = pLevel->pWLoop; if( pLevel->regFilter==0 ) continue; - /* ,--- Because constructBloomFilter() has will not have set + /* ,--- Because sqlite3ConstructBloomFilter() has will not have set ** vvvvv--' pLevel->regFilter if this were true. */ if( NEVER(pLoop->prereq & notReady) ) continue; if( pLoop->wsFlags & WHERE_IPK ){ |