diff options
Diffstat (limited to 'test/func.test')
-rw-r--r-- | test/func.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/func.test b/test/func.test index d8303f8bf..7c7d55e1b 100644 --- a/test/func.test +++ b/test/func.test @@ -1319,6 +1319,14 @@ do_test func-29.6 { set x } {1} +# EVIDENCE-OF: R-29701-50711 The unicode(X) function returns the numeric +# unicode code point corresponding to the first character of the string +# X. +# +# EVIDENCE-OF: R-55469-62130 The char(X1,X2,...,XN) function returns a +# string composed of characters having the unicode code point values of +# integers X1 through XN, respectively. +# do_execsql_test func-30.1 {SELECT unicode('$');} 36 do_execsql_test func-30.2 [subst {SELECT unicode('\u00A2');}] 162 do_execsql_test func-30.3 [subst {SELECT unicode('\u20AC');}] 8364 |