add TCL test for quoting of quotes

This commit is contained in:
Nikita Sivukhin
2025-02-09 23:32:39 +04:00
parent cd4bfac059
commit 5fa6a452c1

View File

@@ -631,6 +631,10 @@ do_execsql_test quote-string {
SELECT quote('limbo')
} {'limbo'}
do_execsql_test quote-escape {
SELECT quote('''quote''')
} {'''quote'''}
do_execsql_test quote-null {
SELECT quote(null)
} {NULL}