aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
authordrh <>2025-01-31 00:54:59 +0000
committerdrh <>2025-01-31 00:54:59 +0000
commit0911f86abf39bfaf0f3b144f07860238baf6a483 (patch)
tree468e924cf458bcffd8948677078a460b66c688ea /src/func.c
parentc850c2be757ffbf11423b47f8ef94bd0ce20f048 (diff)
parent49906e8e4bfbac201532e111b5f972129ce7bafe (diff)
downloadsqlite-0911f86abf39bfaf0f3b144f07860238baf6a483.tar.gz
sqlite-0911f86abf39bfaf0f3b144f07860238baf6a483.zip
Merge all the latest trunk changes into the extra-security branch.
FossilOrigin-Name: 86ba57561a8d8c14e401c06b2345a9417053aa3a5f0c84e52460f23f5e6aa8d0
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();