diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-06-06 09:44:03 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-06-06 09:44:03 +0000 |
commit | d02eb1fdf4b939e4065d13a64c7c38afda443826 (patch) | |
tree | eaa8c797fe0e44eeb81ce6761c5b5bb2fe35ef8a /src/vdbeapi.c | |
parent | 51c6d9633f52eb6d06b0291005d1a0b5fd552bd9 (diff) | |
download | sqlite-d02eb1fdf4b939e4065d13a64c7c38afda443826.tar.gz sqlite-d02eb1fdf4b939e4065d13a64c7c38afda443826.zip |
Enhance user function API to support association of meta-data with constant
arguments and the specification of text encoding preference. The LIKE
operator takes advantage of both. (CVS 1534)
FossilOrigin-Name: 92337d8f79b9754cd61c73e7db2e792a1f482f50
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r-- | src/vdbeapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c index 1e40fad75..ac7d976bb 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c @@ -248,6 +248,7 @@ void sqlite3_set_auxdata( pCtx->pVdbeFunc = sqliteRealloc(pCtx->pVdbeFunc, nMalloc); if( !pCtx->pVdbeFunc ) return; pCtx->pVdbeFunc->nAux = iArg+1; + pCtx->pVdbeFunc->pFunc = pCtx->pFunc; } pAuxData = &pCtx->pVdbeFunc->apAux[iArg]; |