Pass FuncCtx to Insn::Function to keep track of arg count

This commit is contained in:
jussisaurio
2024-09-14 10:31:42 +03:00
parent f67b915855
commit 0839211a49
5 changed files with 220 additions and 235 deletions

View File

@@ -255,6 +255,10 @@ do_execsql_test length-empty-text {
SELECT length('');
} {0}
do_execsql_test length-date-binary-expr {
select length(date('now')) = 10;
} {1}
do_execsql_test min-number {
select min(-10,2,3)
} {-10}