mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Show the creation of IN-operator Bloom filters in the EXPLAIN QUERY PLAN output.
FossilOrigin-Name: c10a1b99d47a4c93bdb16e646f6a21add570d6dbb34fd91a32f8abacdb28712b
This commit is contained in:
@ -1387,6 +1387,7 @@ static void selectInnerLoop(
|
||||
if( pDest->iSDParm2 ){
|
||||
sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pDest->iSDParm2, 0,
|
||||
regResult, nResultCol);
|
||||
ExplainQueryPlan((pParse, 0, "CREATE BLOOM FILTER"));
|
||||
}
|
||||
sqlite3ReleaseTempReg(pParse, r1);
|
||||
}
|
||||
@ -3324,6 +3325,7 @@ static int generateOutputSubroutine(
|
||||
if( pDest->iSDParm2>0 ){
|
||||
sqlite3VdbeAddOp4Int(v, OP_FilterAdd, pDest->iSDParm2, 0,
|
||||
pIn->iSdst, pIn->nSdst);
|
||||
ExplainQueryPlan((pParse, 0, "CREATE BLOOM FILTER"));
|
||||
}
|
||||
sqlite3ReleaseTempReg(pParse, r1);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user