aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/func.c')
-rw-r--r--src/func.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/func.c b/src/func.c
index 2bd4be31c..bd25a44d4 100644
--- a/src/func.c
+++ b/src/func.c
@@ -2808,10 +2808,8 @@ void sqlite3RegisterBuiltinFunctions(void){
#endif /* SQLITE_ENABLE_MATH_FUNCTIONS */
FUNCTION(sign, 1, 0, 0, signFunc ),
INLINE_FUNC(coalesce, -4, INLINEFUNC_coalesce, 0 ),
- INLINE_FUNC(iif, 2, INLINEFUNC_iif, 0 ),
- INLINE_FUNC(iif, 3, INLINEFUNC_iif, 0 ),
- INLINE_FUNC(if, 2, INLINEFUNC_iif, 0 ),
- INLINE_FUNC(if, 3, INLINEFUNC_iif, 0 ),
+ INLINE_FUNC(iif, -4, INLINEFUNC_iif, 0 ),
+ INLINE_FUNC(if, -4, INLINEFUNC_iif, 0 ),
};
#ifndef SQLITE_OMIT_ALTERTABLE
sqlite3AlterFunctions();