14 lines
274 B
SQL
14 lines
274 B
SQL
# name: test/issues/rigger/test_567.test
|
||
# description: Issue 567
|
||
# group: [rigger]
|
||
|
||
statement ok
|
||
PRAGMA enable_verification
|
||
|
||
# REVERSE() on special character results in 'Assertion `strcmp(dataptr, normalized) == 0' failed.'
|
||
query T
|
||
SELECT REVERSE('S̈a︍');
|
||
----
|
||
a︍S̈
|
||
|