diff options
author | drh <drh@noemail.net> | 2009-11-11 00:24:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-11-11 00:24:31 +0000 |
commit | ae6bb9570b6d6ef7893a9571d0fa10b43d936f61 (patch) | |
tree | 5c9ee74af1b3a4dc9d4912d51af98525357395ae /src/expr.c | |
parent | 63b38789210cab605cbff76932f4be20323a5724 (diff) | |
download | sqlite-ae6bb9570b6d6ef7893a9571d0fa10b43d936f61.tar.gz sqlite-ae6bb9570b6d6ef7893a9571d0fa10b43d936f61.zip |
Generate VDBE code for the built-in COALESCE() and IFNULL() functions. This
allows unused arguments to never be evaluated, which is a performance win when
the unused argument is a subquery.
FossilOrigin-Name: 30055b257c3c65f8123cad5ac6c62c4c6ca2c900
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c index 0cc309361..249ab9037 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2394,6 +2394,27 @@ int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); break; } + + /* Attempt a direct implementation of the built-in COALESCE() and + ** IFNULL() functions. This avoids unnecessary evalation of + ** arguments past the first non-NULL argument. + */ + if( pDef->flags & SQLITE_FUNC_COALESCE ){ + int endCoalesce = sqlite3VdbeMakeLabel(v); + assert( nFarg>=2 ); + sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); + for(i=1; i<nFarg; i++){ + sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); + sqlite3ExprCacheRemove(pParse, target); + sqlite3ExprCachePush(pParse); + sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); + sqlite3ExprCachePop(pParse, 1); + } + sqlite3VdbeResolveLabel(v, endCoalesce); + break; + } + + if( pFarg ){ r1 = sqlite3GetTempRange(pParse, nFarg); sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ |