diff options
author | dan <Dan Kennedy> | 2023-01-23 14:11:34 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2023-01-23 14:11:34 +0000 |
commit | e3c11d55dba5198bcf7b8e144b3c86a7450260ab (patch) | |
tree | 919ab2e26dfd5f73eef5dcecea4ecb8bfc5335ce /test/exprfault.test | |
parent | f75e485ea78fbc23d49148ec8547e04217c17e89 (diff) | |
download | sqlite-e3c11d55dba5198bcf7b8e144b3c86a7450260ab.tar.gz sqlite-e3c11d55dba5198bcf7b8e144b3c86a7450260ab.zip |
Add experimental user function unhex().
FossilOrigin-Name: dbe424b5db33ce2c7562dfb44daf2969cf3074234cc891eb9b8d0d907faf6a78
Diffstat (limited to 'test/exprfault.test')
-rw-r--r-- | test/exprfault.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/exprfault.test b/test/exprfault.test index 9e5977e1d..f0abe9ac3 100644 --- a/test/exprfault.test +++ b/test/exprfault.test @@ -31,5 +31,15 @@ do_faultsim_test 1.1 -faults oom* -prep { faultsim_test_result {0 {}} } +do_faultsim_test 2 -faults oom* -prep { + faultsim_restore_and_reopen +} -body { + execsql { + SELECT hex ( unhex('ABCDEF') ); + } +} -test { + faultsim_test_result {0 ABCDEF} +} + finish_test |