Merge pull request #200 from benclmnt/case-insensitive-cols

This commit is contained in:
Pekka Enberg
2024-07-22 17:49:41 +03:00
committed by GitHub
4 changed files with 30 additions and 23 deletions

View File

@@ -22,3 +22,7 @@ do_execsql_test realify {
do_execsql_test select-add {
select u.age + 1 from users u where u.age = 91 limit 1;
} {92}
do_execsql_test case-insensitive-columns {
select u.aGe + 1 from USERS u where U.AGe = 91 limit 1;
} {92}