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/main.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/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index ce93f2eff..c0dada0a6 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.204 2004/06/04 06:22:01 danielk1977 Exp $ +** $Id: main.c,v 1.205 2004/06/06 09:44:04 danielk1977 Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -656,7 +656,7 @@ int sqlite3_create_function( return SQLITE_ERROR; } - p = sqlite3FindFunction(db, zFunctionName, nName, nArg, 1); + p = sqlite3FindFunction(db, zFunctionName, nName, nArg, eTextRep, 1); if( p==0 ) return 1; p->xFunc = xFunc; p->xStep = xStep; |