First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this file is testing built-in functions.
14 # $Id: func.test,v 1.86 2008/08/04 03:51:24 danielk1977 Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # Create a table to work with.
22 execsql {CREATE TABLE tbl1(t1 text)}
23 foreach word {this program is free software} {
24 execsql "INSERT INTO tbl1 VALUES('$word')"
26 execsql {SELECT t1 FROM tbl1 ORDER BY t1}
27 } {free is program software this}
31 INSERT INTO t2 VALUES(1);
32 INSERT INTO t2 VALUES(NULL);
33 INSERT INTO t2 VALUES(345);
34 INSERT INTO t2 VALUES(NULL);
35 INSERT INTO t2 VALUES(67890);
40 # Check out the length() function
43 execsql {SELECT length(t1) FROM tbl1 ORDER BY t1}
46 set r [catch {execsql {SELECT length(*) FROM tbl1 ORDER BY t1}} msg]
48 } {1 {wrong number of arguments to function length()}}
50 set r [catch {execsql {SELECT length(t1,5) FROM tbl1 ORDER BY t1}} msg]
52 } {1 {wrong number of arguments to function length()}}
54 execsql {SELECT length(t1), count(*) FROM tbl1 GROUP BY length(t1)
58 execsql {SELECT coalesce(length(a),-1) FROM t2}
61 # Check out the substr() function
64 execsql {SELECT substr(t1,1,2) FROM tbl1 ORDER BY t1}
67 execsql {SELECT substr(t1,2,1) FROM tbl1 ORDER BY t1}
70 execsql {SELECT substr(t1,3,3) FROM tbl1 ORDER BY t1}
73 execsql {SELECT substr(t1,-1,1) FROM tbl1 ORDER BY t1}
76 execsql {SELECT substr(t1,-1,2) FROM tbl1 ORDER BY t1}
79 execsql {SELECT substr(t1,-2,1) FROM tbl1 ORDER BY t1}
82 execsql {SELECT substr(t1,-2,2) FROM tbl1 ORDER BY t1}
85 execsql {SELECT substr(t1,-4,2) FROM tbl1 ORDER BY t1}
88 execsql {SELECT t1 FROM tbl1 ORDER BY substr(t1,2,20)}
89 } {this software free program is}
91 execsql {SELECT substr(a,1,1) FROM t2}
94 execsql {SELECT substr(a,2,2) FROM t2}
97 # Only do the following tests if TCL has UTF-8 capabilities
99 if {"\u1234"!="u1234"} {
101 # Put some UTF-8 characters in the database
104 execsql {DELETE FROM tbl1}
105 foreach word "contains UTF-8 characters hi\u1234ho" {
106 execsql "INSERT INTO tbl1 VALUES('$word')"
108 execsql {SELECT t1 FROM tbl1 ORDER BY t1}
109 } "UTF-8 characters contains hi\u1234ho"
111 execsql {SELECT length(t1) FROM tbl1 ORDER BY t1}
114 execsql {SELECT substr(t1,1,2) FROM tbl1 ORDER BY t1}
117 execsql {SELECT substr(t1,1,3) FROM tbl1 ORDER BY t1}
118 } "UTF cha con hi\u1234"
120 execsql {SELECT substr(t1,2,2) FROM tbl1 ORDER BY t1}
123 execsql {SELECT substr(t1,2,3) FROM tbl1 ORDER BY t1}
124 } "TF- har ont i\u1234h"
126 execsql {SELECT substr(t1,3,2) FROM tbl1 ORDER BY t1}
129 execsql {SELECT substr(t1,4,2) FROM tbl1 ORDER BY t1}
132 execsql {SELECT substr(t1,-1,1) FROM tbl1 ORDER BY t1}
135 execsql {SELECT substr(t1,-3,2) FROM tbl1 ORDER BY t1}
138 execsql {SELECT substr(t1,-4,3) FROM tbl1 ORDER BY t1}
139 } "TF- ter ain i\u1234h"
141 execsql {DELETE FROM tbl1}
142 foreach word {this program is free software} {
143 execsql "INSERT INTO tbl1 VALUES('$word')"
145 execsql {SELECT t1 FROM tbl1}
146 } {this program is free software}
148 } ;# End \u1234!=u1234
150 # Test the abs() and round() functions.
154 CREATE TABLE t1(a,b,c);
155 INSERT INTO t1 VALUES(1,2,3);
156 INSERT INTO t1 VALUES(2,1.2345678901234,-12345.67890);
157 INSERT INTO t1 VALUES(3,-2,-5);
159 catchsql {SELECT abs(a,b) FROM t1}
160 } {1 {wrong number of arguments to function abs()}}
162 catchsql {SELECT abs() FROM t1}
163 } {1 {wrong number of arguments to function abs()}}
165 catchsql {SELECT abs(b) FROM t1 ORDER BY a}
166 } {0 {2 1.2345678901234 2}}
168 catchsql {SELECT abs(c) FROM t1 ORDER BY a}
169 } {0 {3 12345.6789 5}}
171 execsql {SELECT abs(a) FROM t2}
172 } {1 {} 345 {} 67890}
174 execsql {SELECT abs(t1) FROM tbl1}
175 } {0.0 0.0 0.0 0.0 0.0}
178 catchsql {SELECT round(a,b,c) FROM t1}
179 } {1 {wrong number of arguments to function round()}}
181 catchsql {SELECT round(b,2) FROM t1 ORDER BY b}
182 } {0 {-2.0 1.23 2.0}}
184 catchsql {SELECT round(b,0) FROM t1 ORDER BY a}
187 catchsql {SELECT round(c) FROM t1 ORDER BY a}
188 } {0 {3.0 -12346.0 -5.0}}
190 catchsql {SELECT round(c,a) FROM t1 ORDER BY a}
191 } {0 {3.0 -12345.68 -5.0}}
193 catchsql {SELECT 'x' || round(c,a) || 'y' FROM t1 ORDER BY a}
194 } {0 {x3.0y x-12345.68y x-5.0y}}
196 catchsql {SELECT round() FROM t1 ORDER BY a}
197 } {1 {wrong number of arguments to function round()}}
199 execsql {SELECT coalesce(round(a,2),'nil') FROM t2}
200 } {1.0 nil 345.0 nil 67890.0}
202 execsql {SELECT round(t1,2) FROM tbl1}
203 } {0.0 0.0 0.0 0.0 0.0}
205 execsql {SELECT typeof(round(5.1,1));}
208 execsql {SELECT typeof(round(5.1));}
212 # Test the upper() and lower() functions
215 execsql {SELECT upper(t1) FROM tbl1}
216 } {THIS PROGRAM IS FREE SOFTWARE}
218 execsql {SELECT lower(upper(t1)) FROM tbl1}
219 } {this program is free software}
221 execsql {SELECT upper(a), lower(a) FROM t2}
222 } {1 1 {} {} 345 345 {} {} 67890 67890}
225 catchsql {SELECT upper(a,5) FROM t2}
226 } {1 {wrong number of arguments to function upper()}}
229 catchsql {SELECT upper(*) FROM t2}
230 } {1 {wrong number of arguments to function upper()}}
232 # Test the coalesce() and nullif() functions
235 execsql {SELECT coalesce(a,'xyz') FROM t2}
236 } {1 xyz 345 xyz 67890}
238 execsql {SELECT coalesce(upper(a),'nil') FROM t2}
239 } {1 nil 345 nil 67890}
241 execsql {SELECT coalesce(nullif(1,1),'nil')}
244 execsql {SELECT coalesce(nullif(1,2),'nil')}
247 execsql {SELECT coalesce(nullif(1,NULL),'nil')}
251 # Test the last_insert_rowid() function
254 execsql {SELECT last_insert_rowid()}
255 } [db last_insert_rowid]
257 # Tests for aggregate functions and how they handle NULLs.
261 execsql {EXPLAIN SELECT sum(a) FROM t2;}
264 SELECT sum(a), count(a), round(avg(a),2), min(a), max(a), count(*) FROM t2;
266 } {68236 3 22745.33 1 67890 5}
269 SELECT max('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t2;
271 } {z+67890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
276 CREATE TEMP TABLE t3 AS SELECT a FROM t2 ORDER BY a DESC;
277 SELECT min('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
279 } {z+1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
283 CREATE TABLE t3 AS SELECT a FROM t2 ORDER BY a DESC;
284 SELECT min('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
286 } {z+1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
290 SELECT max('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
292 } {z+67890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
296 SELECT sum(x) FROM (SELECT '9223372036' || '854775807' AS x
297 UNION ALL SELECT -9223372036854775807)
302 SELECT typeof(sum(x)) FROM (SELECT '9223372036' || '854775807' AS x
303 UNION ALL SELECT -9223372036854775807)
308 SELECT typeof(sum(x)) FROM (SELECT '9223372036' || '854775808' AS x
309 UNION ALL SELECT -9223372036854775807)
314 SELECT sum(x)>0.0 FROM (SELECT '9223372036' || '854775808' AS x
315 UNION ALL SELECT -9223372036850000000)
320 # How do you test the random() function in a meaningful, deterministic way?
324 SELECT random() is not null;
329 SELECT typeof(random());
334 SELECT randomblob(32) is not null;
339 SELECT typeof(randomblob(32));
344 SELECT length(randomblob(32)), length(randomblob(-5)),
345 length(randomblob(2000))
349 # The "hex()" function was added in order to be able to render blobs
350 # generated by randomblob(). So this seems like a good place to test
355 execsql {SELECT hex(x'00112233445566778899aAbBcCdDeEfF')}
356 } {00112233445566778899AABBCCDDEEFF}
358 set encoding [db one {PRAGMA encoding}]
359 if {$encoding=="UTF-16le"} {
360 do_test func-9.11-utf16le {
361 execsql {SELECT hex(replace('abcdefg','ef','12'))}
362 } {6100620063006400310032006700}
363 do_test func-9.12-utf16le {
364 execsql {SELECT hex(replace('abcdefg','','12'))}
366 do_test func-9.13-utf16le {
367 execsql {SELECT hex(replace('aabcdefg','a','aaa'))}
368 } {610061006100610061006100620063006400650066006700}
369 } elseif {$encoding=="UTF-8"} {
370 do_test func-9.11-utf8 {
371 execsql {SELECT hex(replace('abcdefg','ef','12'))}
373 do_test func-9.12-utf8 {
374 execsql {SELECT hex(replace('abcdefg','','12'))}
376 do_test func-9.13-utf8 {
377 execsql {SELECT hex(replace('aabcdefg','a','aaa'))}
378 } {616161616161626364656667}
381 # Use the "sqlite_register_test_function" TCL command which is part of
382 # the text fixture in order to verify correct operation of some of
383 # the user-defined SQL function APIs that are not used by the built-in
386 set ::DB [sqlite3_connection_pointer db]
387 sqlite_register_test_function $::DB testfunc
390 SELECT testfunc(NULL,NULL);
392 } {1 {first argument should be one of: int int64 string double null value}}
396 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
404 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
412 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
420 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
422 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
424 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
426 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
428 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
430 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
436 # Test the built-in sqlite_version(*) SQL function.
440 SELECT sqlite_version(*);
444 # Test that destructors passed to sqlite3 by calls to sqlite3_result_text()
445 # etc. are called. These tests use two special user-defined functions
446 # (implemented in func.c) only available in test builds.
448 # Function test_destructor() takes one argument and returns a copy of the
449 # text form of that argument. A destructor is associated with the return
450 # value. Function test_destructor_count() returns the number of outstanding
451 # destructor calls for values returned by test_destructor().
453 if {[db eval {PRAGMA encoding}]=="UTF-8"} {
454 do_test func-12.1-utf8 {
456 SELECT test_destructor('hello world'), test_destructor_count();
461 do_test func-12.1-utf16 {
463 SELECT test_destructor16('hello world'), test_destructor_count();
470 SELECT test_destructor_count();
475 SELECT test_destructor('hello')||' world'
480 SELECT test_destructor_count();
486 INSERT INTO t4 VALUES(test_destructor('hello'));
487 INSERT INTO t4 VALUES(test_destructor('world'));
488 SELECT min(test_destructor(x)), max(test_destructor(x)) FROM t4;
493 SELECT test_destructor_count();
503 # Test that the auxdata API for scalar functions works. This test uses
504 # a special user-defined function only available in test builds,
505 # test_auxdata(). Function test_auxdata() takes any number of arguments.
508 SELECT test_auxdata('hello world');
514 CREATE TABLE t4(a, b);
515 INSERT INTO t4 VALUES('abc', 'def');
516 INSERT INTO t4 VALUES('ghi', 'jkl');
521 SELECT test_auxdata('hello world') FROM t4;
526 SELECT test_auxdata('hello world', 123) FROM t4;
531 SELECT test_auxdata('hello world', a) FROM t4;
536 SELECT test_auxdata('hello'||'world', a) FROM t4;
540 # Test that auxilary data is preserved between calls for SQL variables.
542 set DB [sqlite3_connection_pointer db]
543 set sql "SELECT test_auxdata( ? , a ) FROM t4;"
544 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
545 sqlite3_bind_text $STMT 1 hello\000 -1
547 while { "SQLITE_ROW"==[sqlite3_step $STMT] } {
548 lappend res [sqlite3_column_text $STMT 0]
550 lappend res [sqlite3_finalize $STMT]
551 } {{0 0} {1 0} SQLITE_OK}
553 # Make sure that a function with a very long name is rejected
556 db function [string repeat X 254] {return "hello"}
561 db function [string repeat X 256] {return "hello"}
566 catchsql {select test_error(NULL)}
569 catchsql {select test_error('this is the error message')}
570 } {1 {this is the error message}}
572 catchsql {select test_error('this is the error message',12)}
573 } {1 {this is the error message}}
578 # Test the quote function for BLOB and NULL values.
581 CREATE TABLE tbl2(a, b);
583 set STMT [sqlite3_prepare $::DB "INSERT INTO tbl2 VALUES(?, ?)" -1 TAIL]
584 sqlite3_bind_blob $::STMT 1 abc 3
586 sqlite3_finalize $::STMT
588 SELECT quote(a), quote(b) FROM tbl2;
592 # Correctly handle function error messages that include %. Ticket #1354
595 proc testfunc1 args {error "Error %d with %s percents %p"}
596 db function testfunc1 ::testfunc1
598 SELECT testfunc1(1,2,3);
600 } {1 {Error %d with %s percents %p}}
602 # The SUM function should return integer results when all inputs are integer.
607 INSERT INTO t5 VALUES(1);
608 INSERT INTO t5 VALUES(-99);
609 INSERT INTO t5 VALUES(10000);
610 SELECT sum(x) FROM t5;
615 INSERT INTO t5 VALUES(0.0);
616 SELECT sum(x) FROM t5;
620 # The sum of nothing is NULL. But the sum of all NULLs is NULL.
622 # The TOTAL of nothing is 0.0.
627 SELECT sum(x), total(x) FROM t5;
632 INSERT INTO t5 VALUES(NULL);
633 SELECT sum(x), total(x) FROM t5
638 INSERT INTO t5 VALUES(NULL);
639 SELECT sum(x), total(x) FROM t5
644 INSERT INTO t5 VALUES(123);
645 SELECT sum(x), total(x) FROM t5
649 # Ticket #1664, #1669, #1670, #1674: An integer overflow on SUM causes
650 # an error. The non-standard TOTAL() function continues to give a helpful
655 CREATE TABLE t6(x INTEGER);
656 INSERT INTO t6 VALUES(1);
657 INSERT INTO t6 VALUES(1<<62);
658 SELECT sum(x) - ((1<<62)+1) from t6;
663 SELECT typeof(sum(x)) FROM t6
668 INSERT INTO t6 VALUES(1<<62);
669 SELECT sum(x) - ((1<<62)*2.0+1) from t6;
671 } {1 {integer overflow}}
674 SELECT total(x) - ((1<<62)*2.0+1) FROM t6
679 SELECT sum(-9223372036854775805);
681 } -9223372036854775805
683 ifcapable compound&&subquery {
688 (SELECT 9223372036854775807 AS x UNION ALL
691 } {1 {integer overflow}}
695 (SELECT 9223372036854775807 AS x UNION ALL
698 } {0 9223372036854775797}
702 (SELECT -9223372036854775807 AS x UNION ALL
705 } {0 -9223372036854775797}
709 (SELECT -9223372036854775807 AS x UNION ALL
712 } {1 {integer overflow}}
715 SELECT sum(x) FROM (SELECT 9 AS x UNION ALL SELECT -10 AS x);
720 SELECT sum(x) FROM (SELECT -9 AS x UNION ALL SELECT 10 AS x);
725 SELECT sum(x) FROM (SELECT -10 AS x UNION ALL SELECT 9 AS x);
730 SELECT sum(x) FROM (SELECT 10 AS x UNION ALL SELECT -9 AS x);
734 } ;# ifcapable compound&&subquery
736 # Integer overflow on abs()
740 SELECT abs(-9223372036854775807);
742 } {0 9223372036854775807}
745 SELECT abs(-9223372036854775807-1);
747 } {1 {integer overflow}}
749 # The MATCH function exists but is only a stub and always throws an error.
753 SELECT match(a,b) FROM t1 WHERE 0;
758 SELECT 'abc' MATCH 'xyz';
760 } {1 {unable to use function MATCH in the requested context}}
763 SELECT 'abc' NOT MATCH 'xyz';
765 } {1 {unable to use function MATCH in the requested context}}
770 } {1 {wrong number of arguments to function match()}}
774 if {![catch {db eval {SELECT soundex('hello')}}]} {
796 execsql {SELECT soundex($name)}
801 # Tests of the REPLACE function.
807 } {1 {wrong number of arguments to function replace()}}
810 SELECT replace(1,2,3,4);
812 } {1 {wrong number of arguments to function replace()}}
815 SELECT typeof(replace("This is the main test string", NULL, "ALT"));
820 SELECT typeof(replace(NULL, "main", "ALT"));
825 SELECT typeof(replace("This is the main test string", "main", NULL));
830 SELECT replace("This is the main test string", "main", "ALT");
832 } {{This is the ALT test string}}
835 SELECT replace("This is the main test string", "main", "larger-main");
837 } {{This is the larger-main test string}}
840 SELECT replace("aaaaaaa", "a", "0123456789");
842 } {0123456789012345678901234567890123456789012345678901234567890123456789}
846 # Attempt to exploit a buffer-overflow that at one time existed
847 # in the REPLACE function.
848 set ::str "[string repeat A 29998]CC[string repeat A 35537]"
849 set ::rep [string repeat B 65536]
851 SELECT LENGTH(REPLACE($::str, 'C', $::rep));
853 } [expr 29998 + 2*65536 + 35537]
856 # Tests for the TRIM, LTRIM and RTRIM functions.
859 catchsql {SELECT trim(1,2,3)}
860 } {1 {wrong number of arguments to function trim()}}
862 catchsql {SELECT ltrim(1,2,3)}
863 } {1 {wrong number of arguments to function ltrim()}}
865 catchsql {SELECT rtrim(1,2,3)}
866 } {1 {wrong number of arguments to function rtrim()}}
868 execsql {SELECT trim(' hi ');}
871 execsql {SELECT ltrim(' hi ');}
874 execsql {SELECT rtrim(' hi ');}
877 execsql {SELECT trim(' hi ','xyz');}
880 execsql {SELECT ltrim(' hi ','xyz');}
883 execsql {SELECT rtrim(' hi ','xyz');}
886 execsql {SELECT trim('xyxzy hi zzzy','xyz');}
889 execsql {SELECT ltrim('xyxzy hi zzzy','xyz');}
892 execsql {SELECT rtrim('xyxzy hi zzzy','xyz');}
895 execsql {SELECT trim(' hi ','');}
897 if {[db one {PRAGMA encoding}]=="UTF-8"} {
899 execsql {SELECT hex(trim(x'c280e1bfbff48fbfbf6869',x'6162e1bfbfc280'))}
902 execsql {SELECT hex(trim(x'6869c280e1bfbff48fbfbf61',
903 x'6162e1bfbfc280f48fbfbf'))}
906 execsql {SELECT hex(trim(x'ceb1ceb2ceb3',x'ceb1'));}
910 execsql {SELECT typeof(trim(NULL));}
913 execsql {SELECT typeof(trim(NULL,'xyz'));}
916 execsql {SELECT typeof(trim('hello',NULL));}
919 # This is to test the deprecated sqlite3_aggregate_count() API.
922 sqlite3_create_aggregate db
924 SELECT legacy_count() FROM t6;
928 # The group_concat() function.
932 SELECT group_concat(t1) FROM tbl1
934 } {this,program,is,free,software}
937 SELECT group_concat(t1,' ') FROM tbl1
939 } {{this program is free software}}
942 SELECT group_concat(t1,' ' || rowid || ' ') FROM tbl1
944 } {{this 2 program 3 is 4 free 5 software}}
947 SELECT group_concat(NULL,t1) FROM tbl1
952 SELECT group_concat(t1,NULL) FROM tbl1
954 } {thisprogramisfreesoftware}
957 SELECT 'BEGIN-'||group_concat(t1) FROM tbl1
959 } {BEGIN-this,program,is,free,software}
960 unset -nocomplain midargs
962 unset -nocomplain midres
964 unset -nocomplain result
965 for {set i 1} {$i<[sqlite3_limit db SQLITE_LIMIT_FUNCTION_ARG -1]-1} {incr i} {
966 append midargs ,'/$i'
969 "this$midres:program$midres:is$midres:free$midres:software$midres"
970 set sql "SELECT group_concat(t1$midargs,':') FROM tbl1"
971 do_test func-24.7.$i {
976 # Use the test_isolation function to make sure that type conversions
977 # on function arguments do not effect subsequent arguments.
980 execsql {SELECT test_isolation(t1,t1) FROM tbl1}
981 } {this program is free software}
983 # Try to misuse the sqlite3_create_function() interface. Verify that
984 # errors are returned.
987 abuse_create_function db
990 # The previous test (func-26.1) registered a function with a very long
991 # function name that takes many arguments and always returns NULL. Verify
992 # that this function works correctly.
996 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG} {incr i} {
1000 SELECT nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789([join $a ,]);
1005 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG+1} {incr i} {
1009 SELECT nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789([join $a ,]);
1011 } {1 {too many arguments on function nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789}}
1014 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG-1} {incr i} {
1018 SELECT nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789([join $a ,]);
1020 } {1 {wrong number of arguments to function nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789()}}
1023 SELECT nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_12345678a(0);
1025 } {1 {no such function: nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_12345678a}}
1028 SELECT nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789a(0);
1030 } {1 {no such function: nullx_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789a}}