From f9b0c0aa277c425c3684db72ac3447f4e1f9bb08 Mon Sep 17 00:00:00 2001 From: themixednuts <118081862+themixednuts@users.noreply.github.com> Date: Thu, 28 Aug 2025 17:40:59 -0500 Subject: [PATCH] chore: add update test to lowercase Instead of making a new test that would be the same, just updated this one to show that sqlite and turso (with this pr) match and isnt case sensitive in strict tables. --- testing/insert.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/insert.test b/testing/insert.test index 70c1c49bd..409f75307 100755 --- a/testing/insert.test +++ b/testing/insert.test @@ -19,9 +19,9 @@ do_execsql_test_on_specific_db {:memory:} must-be-int-insert { 4} do_execsql_test_on_specific_db {:memory:} strict-basic-creation { - CREATE TABLE test1 (id INTEGER, name TEXT, price REAL) STRICT; - INSERT INTO test1 VALUES(1, 'item1', 10.5); - SELECT * FROM test1; + create table test1 (id integer, name text, price real) strict; + insert into test1 values(1, 'item1', 10.5); + select * from test1; } {1|item1|10.5} do_execsql_test_in_memory_any_error strict-require-datatype {