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.
15 set testdir [file dirname $argv0]
16 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.
152 ifcapable !floatingpoint {
155 CREATE TABLE t1(a,b,c);
156 INSERT INTO t1 VALUES(1,2,3);
157 INSERT INTO t1 VALUES(2,12345678901234,-1234567890);
158 INSERT INTO t1 VALUES(3,-2,-5);
160 catchsql {SELECT abs(a,b) FROM t1}
161 } {1 {wrong number of arguments to function abs()}}
163 ifcapable floatingpoint {
166 CREATE TABLE t1(a,b,c);
167 INSERT INTO t1 VALUES(1,2,3);
168 INSERT INTO t1 VALUES(2,1.2345678901234,-12345.67890);
169 INSERT INTO t1 VALUES(3,-2,-5);
171 catchsql {SELECT abs(a,b) FROM t1}
172 } {1 {wrong number of arguments to function abs()}}
175 catchsql {SELECT abs() FROM t1}
176 } {1 {wrong number of arguments to function abs()}}
177 ifcapable floatingpoint {
179 catchsql {SELECT abs(b) FROM t1 ORDER BY a}
180 } {0 {2 1.2345678901234 2}}
182 catchsql {SELECT abs(c) FROM t1 ORDER BY a}
183 } {0 {3 12345.6789 5}}
185 ifcapable !floatingpoint {
186 if {[working_64bit_int]} {
188 catchsql {SELECT abs(b) FROM t1 ORDER BY a}
189 } {0 {2 12345678901234 2}}
192 catchsql {SELECT abs(c) FROM t1 ORDER BY a}
193 } {0 {3 1234567890 5}}
196 execsql {SELECT abs(a) FROM t2}
197 } {1 {} 345 {} 67890}
199 execsql {SELECT abs(t1) FROM tbl1}
200 } {0.0 0.0 0.0 0.0 0.0}
202 ifcapable floatingpoint {
204 catchsql {SELECT round(a,b,c) FROM t1}
205 } {1 {wrong number of arguments to function round()}}
207 catchsql {SELECT round(b,2) FROM t1 ORDER BY b}
208 } {0 {-2.0 1.23 2.0}}
210 catchsql {SELECT round(b,0) FROM t1 ORDER BY a}
213 catchsql {SELECT round(c) FROM t1 ORDER BY a}
214 } {0 {3.0 -12346.0 -5.0}}
216 catchsql {SELECT round(c,a) FROM t1 ORDER BY a}
217 } {0 {3.0 -12345.68 -5.0}}
219 catchsql {SELECT 'x' || round(c,a) || 'y' FROM t1 ORDER BY a}
220 } {0 {x3.0y x-12345.68y x-5.0y}}
222 catchsql {SELECT round() FROM t1 ORDER BY a}
223 } {1 {wrong number of arguments to function round()}}
225 execsql {SELECT coalesce(round(a,2),'nil') FROM t2}
226 } {1.0 nil 345.0 nil 67890.0}
228 execsql {SELECT round(t1,2) FROM tbl1}
229 } {0.0 0.0 0.0 0.0 0.0}
231 execsql {SELECT typeof(round(5.1,1));}
234 execsql {SELECT typeof(round(5.1));}
237 catchsql {SELECT round(b,2.0) FROM t1 ORDER BY b}
238 } {0 {-2.0 1.23 2.0}}
239 # Verify some values reported on the mailing list.
240 # Some of these fail on MSVC builds with 64-bit
241 # long doubles, but not on GCC builds with 80-bit
243 for {set i 1} {$i<999} {incr i} {
244 set x1 [expr 40222.5 + $i]
245 set x2 [expr 40223.0 + $i]
246 do_test func-4.17.$i {
247 execsql {SELECT round($x1);}
250 for {set i 1} {$i<999} {incr i} {
251 set x1 [expr 40222.05 + $i]
252 set x2 [expr 40222.10 + $i]
253 do_test func-4.18.$i {
254 execsql {SELECT round($x1,1);}
258 execsql {SELECT round(40223.4999999999);}
261 execsql {SELECT round(40224.4999999999);}
264 execsql {SELECT round(40225.4999999999);}
266 for {set i 1} {$i<10} {incr i} {
267 do_test func-4.23.$i {
268 execsql {SELECT round(40223.4999999999,$i);}
270 do_test func-4.24.$i {
271 execsql {SELECT round(40224.4999999999,$i);}
273 do_test func-4.25.$i {
274 execsql {SELECT round(40225.4999999999,$i);}
277 for {set i 10} {$i<32} {incr i} {
278 do_test func-4.26.$i {
279 execsql {SELECT round(40223.4999999999,$i);}
281 do_test func-4.27.$i {
282 execsql {SELECT round(40224.4999999999,$i);}
284 do_test func-4.28.$i {
285 execsql {SELECT round(40225.4999999999,$i);}
289 execsql {SELECT round(1234567890.5);}
292 execsql {SELECT round(12345678901.5);}
295 execsql {SELECT round(123456789012.5);}
298 execsql {SELECT round(1234567890123.5);}
301 execsql {SELECT round(12345678901234.5);}
304 execsql {SELECT round(1234567890123.35,1);}
307 execsql {SELECT round(1234567890123.445,2);}
310 execsql {SELECT round(99999999999994.5);}
313 execsql {SELECT round(9999999999999.55,1);}
316 execsql {SELECT round(9999999999999.556,2);}
320 # Test the upper() and lower() functions
323 execsql {SELECT upper(t1) FROM tbl1}
324 } {THIS PROGRAM IS FREE SOFTWARE}
326 execsql {SELECT lower(upper(t1)) FROM tbl1}
327 } {this program is free software}
329 execsql {SELECT upper(a), lower(a) FROM t2}
330 } {1 1 {} {} 345 345 {} {} 67890 67890}
333 catchsql {SELECT upper(a,5) FROM t2}
334 } {1 {wrong number of arguments to function upper()}}
337 catchsql {SELECT upper(*) FROM t2}
338 } {1 {wrong number of arguments to function upper()}}
340 # Test the coalesce() and nullif() functions
343 execsql {SELECT coalesce(a,'xyz') FROM t2}
344 } {1 xyz 345 xyz 67890}
346 execsql {SELECT coalesce(upper(a),'nil') FROM t2}
347 } {1 nil 345 nil 67890}
349 execsql {SELECT coalesce(nullif(1,1),'nil')}
352 execsql {SELECT coalesce(nullif(1,2),'nil')}
355 execsql {SELECT coalesce(nullif(1,NULL),'nil')}
359 # Test the last_insert_rowid() function
362 execsql {SELECT last_insert_rowid()}
363 } [db last_insert_rowid]
365 # Tests for aggregate functions and how they handle NULLs.
367 ifcapable floatingpoint {
370 execsql {EXPLAIN SELECT sum(a) FROM t2;}
373 SELECT sum(a), count(a), round(avg(a),2), min(a), max(a), count(*) FROM t2;
375 } {68236 3 22745.33 1 67890 5}
377 ifcapable !floatingpoint {
380 execsql {EXPLAIN SELECT sum(a) FROM t2;}
383 SELECT sum(a), count(a), avg(a), min(a), max(a), count(*) FROM t2;
385 } {68236 3 22745.0 1 67890 5}
389 SELECT max('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t2;
391 } {z+67890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
396 CREATE TEMP TABLE t3 AS SELECT a FROM t2 ORDER BY a DESC;
397 SELECT min('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
399 } {z+1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
403 CREATE TABLE t3 AS SELECT a FROM t2 ORDER BY a DESC;
404 SELECT min('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
406 } {z+1abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
410 SELECT max('z+'||a||'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP') FROM t3;
412 } {z+67890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP}
416 SELECT sum(x) FROM (SELECT '9223372036' || '854775807' AS x
417 UNION ALL SELECT -9223372036854775807)
422 SELECT typeof(sum(x)) FROM (SELECT '9223372036' || '854775807' AS x
423 UNION ALL SELECT -9223372036854775807)
428 SELECT typeof(sum(x)) FROM (SELECT '9223372036' || '854775808' AS x
429 UNION ALL SELECT -9223372036854775807)
432 ifcapable floatingpoint {
435 SELECT sum(x)>0.0 FROM (SELECT '9223372036' || '854775808' AS x
436 UNION ALL SELECT -9223372036850000000)
440 ifcapable !floatingpoint {
443 SELECT sum(x)>0 FROM (SELECT '9223372036' || '854775808' AS x
444 UNION ALL SELECT -9223372036850000000)
450 # How do you test the random() function in a meaningful, deterministic way?
454 SELECT random() is not null;
459 SELECT typeof(random());
464 SELECT randomblob(32) is not null;
469 SELECT typeof(randomblob(32));
474 SELECT length(randomblob(32)), length(randomblob(-5)),
475 length(randomblob(2000))
479 # The "hex()" function was added in order to be able to render blobs
480 # generated by randomblob(). So this seems like a good place to test
485 execsql {SELECT hex(x'00112233445566778899aAbBcCdDeEfF')}
486 } {00112233445566778899AABBCCDDEEFF}
488 set encoding [db one {PRAGMA encoding}]
489 if {$encoding=="UTF-16le"} {
490 do_test func-9.11-utf16le {
491 execsql {SELECT hex(replace('abcdefg','ef','12'))}
492 } {6100620063006400310032006700}
493 do_test func-9.12-utf16le {
494 execsql {SELECT hex(replace('abcdefg','','12'))}
495 } {6100620063006400650066006700}
496 do_test func-9.13-utf16le {
497 execsql {SELECT hex(replace('aabcdefg','a','aaa'))}
498 } {610061006100610061006100620063006400650066006700}
499 } elseif {$encoding=="UTF-8"} {
500 do_test func-9.11-utf8 {
501 execsql {SELECT hex(replace('abcdefg','ef','12'))}
503 do_test func-9.12-utf8 {
504 execsql {SELECT hex(replace('abcdefg','','12'))}
506 do_test func-9.13-utf8 {
507 execsql {SELECT hex(replace('aabcdefg','a','aaa'))}
508 } {616161616161626364656667}
510 do_execsql_test func-9.14 {
511 WITH RECURSIVE c(x) AS (
514 SELECT x+1 FROM c WHERE x<1040
518 sum(length(replace(printf('abc%.*cxyz',x,'m'),'m','nnnn'))-(6+x*4))
522 # Use the "sqlite_register_test_function" TCL command which is part of
523 # the text fixture in order to verify correct operation of some of
524 # the user-defined SQL function APIs that are not used by the built-in
527 set ::DB [sqlite3_connection_pointer db]
528 sqlite_register_test_function $::DB testfunc
531 SELECT testfunc(NULL,NULL);
533 } {1 {first argument should be one of: int int64 string double null value}}
537 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
545 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
551 ifcapable floatingpoint {
555 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
563 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
565 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
567 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
569 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
571 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
573 'string', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
580 # Test the built-in sqlite_version(*) SQL function.
584 SELECT sqlite_version(*);
588 # Test that destructors passed to sqlite3 by calls to sqlite3_result_text()
589 # etc. are called. These tests use two special user-defined functions
590 # (implemented in func.c) only available in test builds.
592 # Function test_destructor() takes one argument and returns a copy of the
593 # text form of that argument. A destructor is associated with the return
594 # value. Function test_destructor_count() returns the number of outstanding
595 # destructor calls for values returned by test_destructor().
597 if {[db eval {PRAGMA encoding}]=="UTF-8"} {
598 do_test func-12.1-utf8 {
600 SELECT test_destructor('hello world'), test_destructor_count();
605 do_test func-12.1-utf16 {
607 SELECT test_destructor16('hello world'), test_destructor_count();
614 SELECT test_destructor_count();
619 SELECT test_destructor('hello')||' world'
624 SELECT test_destructor_count();
630 INSERT INTO t4 VALUES(test_destructor('hello'));
631 INSERT INTO t4 VALUES(test_destructor('world'));
632 SELECT min(test_destructor(x)), max(test_destructor(x)) FROM t4;
637 SELECT test_destructor_count();
647 # Test that the auxdata API for scalar functions works. This test uses
648 # a special user-defined function only available in test builds,
649 # test_auxdata(). Function test_auxdata() takes any number of arguments.
652 SELECT test_auxdata('hello world');
658 CREATE TABLE t4(a, b);
659 INSERT INTO t4 VALUES('abc', 'def');
660 INSERT INTO t4 VALUES('ghi', 'jkl');
665 SELECT test_auxdata('hello world') FROM t4;
670 SELECT test_auxdata('hello world', 123) FROM t4;
675 SELECT test_auxdata('hello world', a) FROM t4;
680 SELECT test_auxdata('hello'||'world', a) FROM t4;
684 # Test that auxilary data is preserved between calls for SQL variables.
686 set DB [sqlite3_connection_pointer db]
687 set sql "SELECT test_auxdata( ? , a ) FROM t4;"
688 set STMT [sqlite3_prepare $DB $sql -1 TAIL]
689 sqlite3_bind_text $STMT 1 hello\000 -1
691 while { "SQLITE_ROW"==[sqlite3_step $STMT] } {
692 lappend res [sqlite3_column_text $STMT 0]
694 lappend res [sqlite3_finalize $STMT]
695 } {{0 0} {1 0} SQLITE_OK}
697 # Test that auxiliary data is discarded when a statement is reset.
698 do_execsql_test 13.8.1 {
699 SELECT test_auxdata('constant') FROM t4;
701 do_execsql_test 13.8.2 {
702 SELECT test_auxdata('constant') FROM t4;
705 do_execsql_test 13.8.3 {
706 SELECT test_auxdata('constant') FROM t4;
709 do_execsql_test 13.8.4 {
710 SELECT test_auxdata($V), $V FROM t4;
713 do_execsql_test 13.8.5 {
714 SELECT test_auxdata($V), $V FROM t4;
718 do_execsql_test 13.8.6 {
719 SELECT test_auxdata($V), $V FROM t4;
723 # Make sure that a function with a very long name is rejected
726 db function [string repeat X 254] {return "hello"}
731 db function [string repeat X 256] {return "hello"}
736 catchsql {select test_error(NULL)}
739 catchsql {select test_error('this is the error message')}
740 } {1 {this is the error message}}
742 catchsql {select test_error('this is the error message',12)}
743 } {1 {this is the error message}}
748 # Test the quote function for BLOB and NULL values.
751 CREATE TABLE tbl2(a, b);
753 set STMT [sqlite3_prepare $::DB "INSERT INTO tbl2 VALUES(?, ?)" -1 TAIL]
754 sqlite3_bind_blob $::STMT 1 abc 3
756 sqlite3_finalize $::STMT
758 SELECT quote(a), quote(b) FROM tbl2;
762 # Correctly handle function error messages that include %. Ticket #1354
765 proc testfunc1 args {error "Error %d with %s percents %p"}
766 db function testfunc1 ::testfunc1
768 SELECT testfunc1(1,2,3);
770 } {1 {Error %d with %s percents %p}}
772 # The SUM function should return integer results when all inputs are integer.
777 INSERT INTO t5 VALUES(1);
778 INSERT INTO t5 VALUES(-99);
779 INSERT INTO t5 VALUES(10000);
780 SELECT sum(x) FROM t5;
783 ifcapable floatingpoint {
786 INSERT INTO t5 VALUES(0.0);
787 SELECT sum(x) FROM t5;
792 # The sum of nothing is NULL. But the sum of all NULLs is NULL.
794 # The TOTAL of nothing is 0.0.
799 SELECT sum(x), total(x) FROM t5;
804 INSERT INTO t5 VALUES(NULL);
805 SELECT sum(x), total(x) FROM t5
810 INSERT INTO t5 VALUES(NULL);
811 SELECT sum(x), total(x) FROM t5
816 INSERT INTO t5 VALUES(123);
817 SELECT sum(x), total(x) FROM t5
821 # Ticket #1664, #1669, #1670, #1674: An integer overflow on SUM causes
822 # an error. The non-standard TOTAL() function continues to give a helpful
827 CREATE TABLE t6(x INTEGER);
828 INSERT INTO t6 VALUES(1);
829 INSERT INTO t6 VALUES(1<<62);
830 SELECT sum(x) - ((1<<62)+1) from t6;
835 SELECT typeof(sum(x)) FROM t6
838 ifcapable floatingpoint {
841 INSERT INTO t6 VALUES(1<<62);
842 SELECT sum(x) - ((1<<62)*2.0+1) from t6;
844 } {1 {integer overflow}}
847 SELECT total(x) - ((1<<62)*2.0+1) FROM t6
851 ifcapable !floatingpoint {
854 INSERT INTO t6 VALUES(1<<62);
855 SELECT sum(x) - ((1<<62)*2+1) from t6;
857 } {1 {integer overflow}}
860 SELECT total(x) - ((1<<62)*2+1) FROM t6
864 if {[working_64bit_int]} {
867 SELECT sum(-9223372036854775805);
869 } -9223372036854775805
871 ifcapable compound&&subquery {
876 (SELECT 9223372036854775807 AS x UNION ALL
879 } {1 {integer overflow}}
880 if {[working_64bit_int]} {
884 (SELECT 9223372036854775807 AS x UNION ALL
887 } {0 9223372036854775797}
891 (SELECT -9223372036854775807 AS x UNION ALL
894 } {0 -9223372036854775797}
899 (SELECT -9223372036854775807 AS x UNION ALL
902 } {1 {integer overflow}}
905 SELECT sum(x) FROM (SELECT 9 AS x UNION ALL SELECT -10 AS x);
910 SELECT sum(x) FROM (SELECT -9 AS x UNION ALL SELECT 10 AS x);
915 SELECT sum(x) FROM (SELECT -10 AS x UNION ALL SELECT 9 AS x);
920 SELECT sum(x) FROM (SELECT 10 AS x UNION ALL SELECT -9 AS x);
924 } ;# ifcapable compound&&subquery
926 # Integer overflow on abs()
928 if {[working_64bit_int]} {
931 SELECT abs(-9223372036854775807);
933 } {0 9223372036854775807}
937 SELECT abs(-9223372036854775807-1);
939 } {1 {integer overflow}}
941 # The MATCH function exists but is only a stub and always throws an error.
945 SELECT match(a,b) FROM t1 WHERE 0;
950 SELECT 'abc' MATCH 'xyz';
952 } {1 {unable to use function MATCH in the requested context}}
955 SELECT 'abc' NOT MATCH 'xyz';
957 } {1 {unable to use function MATCH in the requested context}}
962 } {1 {wrong number of arguments to function match()}}
966 if {![catch {db eval {SELECT soundex('hello')}}]} {
988 execsql {SELECT soundex($name)}
993 # Tests of the REPLACE function.
999 } {1 {wrong number of arguments to function replace()}}
1002 SELECT replace(1,2,3,4);
1004 } {1 {wrong number of arguments to function replace()}}
1007 SELECT typeof(replace("This is the main test string", NULL, "ALT"));
1012 SELECT typeof(replace(NULL, "main", "ALT"));
1017 SELECT typeof(replace("This is the main test string", "main", NULL));
1022 SELECT replace("This is the main test string", "main", "ALT");
1024 } {{This is the ALT test string}}
1027 SELECT replace("This is the main test string", "main", "larger-main");
1029 } {{This is the larger-main test string}}
1032 SELECT replace("aaaaaaa", "a", "0123456789");
1034 } {0123456789012345678901234567890123456789012345678901234567890123456789}
1038 # Attempt to exploit a buffer-overflow that at one time existed
1039 # in the REPLACE function.
1040 set ::str "[string repeat A 29998]CC[string repeat A 35537]"
1041 set ::rep [string repeat B 65536]
1043 SELECT LENGTH(REPLACE($::str, 'C', $::rep));
1045 } [expr 29998 + 2*65536 + 35537]
1048 # Tests for the TRIM, LTRIM and RTRIM functions.
1051 catchsql {SELECT trim(1,2,3)}
1052 } {1 {wrong number of arguments to function trim()}}
1054 catchsql {SELECT ltrim(1,2,3)}
1055 } {1 {wrong number of arguments to function ltrim()}}
1057 catchsql {SELECT rtrim(1,2,3)}
1058 } {1 {wrong number of arguments to function rtrim()}}
1060 execsql {SELECT trim(' hi ');}
1063 execsql {SELECT ltrim(' hi ');}
1066 execsql {SELECT rtrim(' hi ');}
1069 execsql {SELECT trim(' hi ','xyz');}
1072 execsql {SELECT ltrim(' hi ','xyz');}
1075 execsql {SELECT rtrim(' hi ','xyz');}
1077 do_test func-22.10 {
1078 execsql {SELECT trim('xyxzy hi zzzy','xyz');}
1080 do_test func-22.11 {
1081 execsql {SELECT ltrim('xyxzy hi zzzy','xyz');}
1083 do_test func-22.12 {
1084 execsql {SELECT rtrim('xyxzy hi zzzy','xyz');}
1086 do_test func-22.13 {
1087 execsql {SELECT trim(' hi ','');}
1089 if {[db one {PRAGMA encoding}]=="UTF-8"} {
1090 do_test func-22.14 {
1091 execsql {SELECT hex(trim(x'c280e1bfbff48fbfbf6869',x'6162e1bfbfc280'))}
1093 do_test func-22.15 {
1094 execsql {SELECT hex(trim(x'6869c280e1bfbff48fbfbf61',
1095 x'6162e1bfbfc280f48fbfbf'))}
1097 do_test func-22.16 {
1098 execsql {SELECT hex(trim(x'ceb1ceb2ceb3',x'ceb1'));}
1101 do_test func-22.20 {
1102 execsql {SELECT typeof(trim(NULL));}
1104 do_test func-22.21 {
1105 execsql {SELECT typeof(trim(NULL,'xyz'));}
1107 do_test func-22.22 {
1108 execsql {SELECT typeof(trim('hello',NULL));}
1111 # This is to test the deprecated sqlite3_aggregate_count() API.
1113 ifcapable deprecated {
1115 sqlite3_create_aggregate db
1117 SELECT legacy_count() FROM t6;
1122 # The group_concat() function.
1126 SELECT group_concat(t1) FROM tbl1
1128 } {this,program,is,free,software}
1131 SELECT group_concat(t1,' ') FROM tbl1
1133 } {{this program is free software}}
1136 SELECT group_concat(t1,' ' || rowid || ' ') FROM tbl1
1138 } {{this 2 program 3 is 4 free 5 software}}
1141 SELECT group_concat(NULL,t1) FROM tbl1
1146 SELECT group_concat(t1,NULL) FROM tbl1
1148 } {thisprogramisfreesoftware}
1151 SELECT 'BEGIN-'||group_concat(t1) FROM tbl1
1153 } {BEGIN-this,program,is,free,software}
1155 # Ticket #3179: Make sure aggregate functions can take many arguments.
1156 # None of the built-in aggregates do this, so use the md5sum() from the
1159 unset -nocomplain midargs
1161 unset -nocomplain midres
1163 unset -nocomplain result
1164 for {set i 1} {$i<[sqlite3_limit db SQLITE_LIMIT_FUNCTION_ARG -1]} {incr i} {
1165 append midargs ,'/$i'
1168 "this${midres}program${midres}is${midres}free${midres}software${midres}"]
1169 set sql "SELECT md5sum(t1$midargs) FROM tbl1"
1170 do_test func-24.7.$i {
1175 # Ticket #3806. If the initial string in a group_concat is an empty
1176 # string, the separator that follows should still be present.
1180 SELECT group_concat(CASE t1 WHEN 'this' THEN '' ELSE t1 END) FROM tbl1
1182 } {,program,is,free,software}
1185 SELECT group_concat(CASE WHEN t1!='software' THEN '' ELSE t1 END) FROM tbl1
1189 # Ticket #3923. Initial empty strings have a separator. But initial
1192 do_test func-24.10 {
1194 SELECT group_concat(CASE t1 WHEN 'this' THEN null ELSE t1 END) FROM tbl1
1196 } {program,is,free,software}
1197 do_test func-24.11 {
1199 SELECT group_concat(CASE WHEN t1!='software' THEN null ELSE t1 END) FROM tbl1
1202 do_test func-24.12 {
1204 SELECT group_concat(CASE t1 WHEN 'this' THEN ''
1205 WHEN 'program' THEN null ELSE t1 END) FROM tbl1
1207 } {,is,free,software}
1208 # Tests to verify ticket http://www.sqlite.org/src/tktview/55746f9e65f8587c0
1209 do_test func-24.13 {
1211 SELECT typeof(group_concat(x)) FROM (SELECT '' AS x);
1214 do_test func-24.14 {
1216 SELECT typeof(group_concat(x,''))
1217 FROM (SELECT '' AS x UNION ALL SELECT '');
1222 # Use the test_isolation function to make sure that type conversions
1223 # on function arguments do not effect subsequent arguments.
1226 execsql {SELECT test_isolation(t1,t1) FROM tbl1}
1227 } {this program is free software}
1229 # Try to misuse the sqlite3_create_function() interface. Verify that
1230 # errors are returned.
1233 abuse_create_function db
1236 # The previous test (func-26.1) registered a function with a very long
1237 # function name that takes many arguments and always returns NULL. Verify
1238 # that this function works correctly.
1242 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG} {incr i} {
1246 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 ,]);
1251 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG+1} {incr i} {
1255 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 ,]);
1257 } {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}}
1260 for {set i 1} {$i<=$::SQLITE_MAX_FUNCTION_ARG-1} {incr i} {
1264 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 ,]);
1266 } {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()}}
1269 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);
1271 } {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}}
1274 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);
1276 } {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}}
1279 catchsql {SELECT coalesce()}
1280 } {1 {wrong number of arguments to function coalesce()}}
1282 catchsql {SELECT coalesce(1)}
1283 } {1 {wrong number of arguments to function coalesce()}}
1285 catchsql {SELECT coalesce(1,2)}
1288 # Ticket 2d401a94287b5
1289 # Unknown function in a DEFAULT expression causes a segfault.
1293 CREATE TABLE t28(x, y DEFAULT(nosuchfunc(1)));
1296 INSERT INTO t28(x) VALUES(1);
1298 } {1 {unknown function: nosuchfunc()}}
1300 # Verify that the length() and typeof() functions do not actually load
1301 # the content of their argument.
1305 CREATE TABLE t29(id INTEGER PRIMARY KEY, x, y);
1306 INSERT INTO t29 VALUES(1, 2, 3), (2, NULL, 4), (3, 4.5, 5);
1307 INSERT INTO t29 VALUES(4, randomblob(1000000), 6);
1308 INSERT INTO t29 VALUES(5, "hello", 7);
1312 sqlite3_db_status db CACHE_MISS 1
1313 db eval {SELECT typeof(x), length(x), typeof(y) FROM t29 ORDER BY id}
1314 } {integer 1 integer null {} integer real 3 integer blob 1000000 integer text 5 integer}
1316 set x [lindex [sqlite3_db_status db CACHE_MISS 1] 1]
1323 sqlite3_db_status db CACHE_MISS 1
1324 db eval {SELECT typeof(+x) FROM t29 ORDER BY id}
1325 } {integer null real blob text}
1326 if {[permutation] != "mmap"} {
1327 ifcapable !direct_read {
1329 set x [lindex [sqlite3_db_status db CACHE_MISS 1] 1]
1330 if {$x>100} {set x many}
1338 sqlite3_db_status db CACHE_MISS 1
1339 db eval {SELECT sum(length(x)) FROM t29}
1342 set x [lindex [sqlite3_db_status db CACHE_MISS 1] 1]
1347 # The OP_Column opcode has an optimization that avoids loading content
1348 # for fields with content-length=0 when the content offset is on an overflow
1349 # page. Make sure the optimization works.
1351 do_execsql_test func-29.10 {
1352 CREATE TABLE t29b(a,b,c,d,e,f,g,h,i);
1354 VALUES(1, hex(randomblob(2000)), null, 0, 1, '', zeroblob(0),'x',x'01');
1355 SELECT typeof(c), typeof(d), typeof(e), typeof(f),
1356 typeof(g), typeof(h), typeof(i) FROM t29b;
1357 } {null integer integer text blob text blob}
1358 do_execsql_test func-29.11 {
1359 SELECT length(f), length(g), length(h), length(i) FROM t29b;
1361 do_execsql_test func-29.12 {
1362 SELECT quote(f), quote(g), quote(h), quote(i) FROM t29b;
1363 } {'' X'' 'x' X'01'}
1365 # EVIDENCE-OF: R-29701-50711 The unicode(X) function returns the numeric
1366 # unicode code point corresponding to the first character of the string
1369 # EVIDENCE-OF: R-55469-62130 The char(X1,X2,...,XN) function returns a
1370 # string composed of characters having the unicode code point values of
1371 # integers X1 through XN, respectively.
1373 do_execsql_test func-30.1 {SELECT unicode('$');} 36
1374 do_execsql_test func-30.2 [subst {SELECT unicode('\u00A2');}] 162
1375 do_execsql_test func-30.3 [subst {SELECT unicode('\u20AC');}] 8364
1376 do_execsql_test func-30.4 {SELECT char(36,162,8364);} [subst {$\u00A2\u20AC}]
1378 for {set i 1} {$i<0xd800} {incr i 13} {
1379 do_execsql_test func-30.5.$i {SELECT unicode(char($i))} $i
1381 for {set i 57344} {$i<=0xfffd} {incr i 17} {
1382 if {$i==0xfeff} continue
1383 do_execsql_test func-30.5.$i {SELECT unicode(char($i))} $i
1385 for {set i 65536} {$i<=0x10ffff} {incr i 139} {
1386 do_execsql_test func-30.5.$i {SELECT unicode(char($i))} $i
1391 do_execsql_test func-31.1 {
1392 SELECT char(), length(char()), typeof(char())