make comparison case sensitive

This commit is contained in:
Pavan-Nambi
2025-10-12 18:02:03 +05:30
parent 99f2df3d70
commit 7e8dabaee5
2 changed files with 6 additions and 1 deletions

View File

@@ -999,3 +999,8 @@ do_execsql_test_in_memory_any_error limit-column-reference-error {
CREATE TABLE t(a);
SELECT * FROM t LIMIT (t.a);
}
do_execsql_test select-binary-collation {
SELECT 'a' = 'A';
SELECT 'a' = 'a';
} {0 1}