From 5eae685fa8dc6e63e6c944f3b262aa96c577e5f0 Mon Sep 17 00:00:00 2001 From: "Levy A." Date: Wed, 26 Mar 2025 07:04:03 -0300 Subject: [PATCH] add tests --- testing/math.test | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/testing/math.test b/testing/math.test index 847f94f9a..e014483b2 100755 --- a/testing/math.test +++ b/testing/math.test @@ -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 } \ No newline at end of file +} { 1 } + +do_execsql_test unary-plus-noop-string { + SELECT +'000' +} { 000 } + +do_execsql_test unary-plus-noop-blob { + SELECT typeof(+x'00') = 'blob' +} { 1 }