diff --git a/testing/scalar-functions.test b/testing/scalar-functions.test index f04fa1765..924bafa6d 100755 --- a/testing/scalar-functions.test +++ b/testing/scalar-functions.test @@ -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}