add tests

This commit is contained in:
Levy A. 2025-03-26 07:04:03 -03:00
parent dd10fb13a7
commit 5eae685fa8

View file

@ -1383,4 +1383,12 @@ do_execsql_test comp-blog-string {
do_execsql_test comp-blog-blog {
SELECT cast('0' as BLOB) = cast('0' as BLOB)
} { 1 }
} { 1 }
do_execsql_test unary-plus-noop-string {
SELECT +'000'
} { 000 }
do_execsql_test unary-plus-noop-blob {
SELECT typeof(+x'00') = 'blob'
} { 1 }