diff options
author | drh <drh@noemail.net> | 2012-04-07 00:09:21 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-04-07 00:09:21 +0000 |
commit | 89d5d6a2a76f72bbac57bb082f7d52bb829dd02c (patch) | |
tree | 843fef8d4b82b6fdded394dfb3acb44a7f041768 /src/sqliteInt.h | |
parent | 370026242abd997ae6e417099a91cc559b4cb0fb (diff) | |
download | sqlite-89d5d6a2a76f72bbac57bb082f7d52bb829dd02c.tar.gz sqlite-89d5d6a2a76f72bbac57bb082f7d52bb829dd02c.zip |
Fix the application-defined function logic so that functions with a variable
number of parameters can be replaced or deleted correctly. Also refactor
some of the function-finder code for clarity of presentation.
FossilOrigin-Name: 09d5581c81fb6a9bf6a369d0abf5ef6b54637576
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c52244c11..ccffe09c2 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2845,7 +2845,7 @@ SrcList *sqlite3SrcListDup(sqlite3*,SrcList*,int); IdList *sqlite3IdListDup(sqlite3*,IdList*); Select *sqlite3SelectDup(sqlite3*,Select*,int); void sqlite3FuncDefInsert(FuncDefHash*, FuncDef*); -FuncDef *sqlite3FindFunction(sqlite3*,const char*,int,int,u8,int); +FuncDef *sqlite3FindFunction(sqlite3*,const char*,int,int,u8,u8); void sqlite3RegisterBuiltinFunctions(sqlite3*); void sqlite3RegisterDateTimeFunctions(void); void sqlite3RegisterGlobalFunctions(void); |