postgresql/contrib/unaccent/expected/unaccent.out
Tom Lane 4b98b613f6 Print the actual DB encoding in the unaccent regression test.
This is to help make it more obvious what the problem is, if the
encoding isn't what the test expects.
2009-08-18 16:00:50 +00:00

66 lines
875 B
Plaintext

SET client_min_messages = warning;
\set ECHO none
RESET client_min_messages;
-- must have a UTF8 database
SELECT getdatabaseencoding();
getdatabaseencoding
---------------------
UTF8
(1 row)
SET client_encoding TO 'KOI8';
SELECT unaccent('foobar');
unaccent
----------
foobar
(1 row)
SELECT unaccent('L肆');
unaccent
----------
盘肆
(1 row)
SELECT unaccent('出殡');
unaccent
----------
弼殡
(1 row)
SELECT unaccent('unaccent', 'foobar');
unaccent
----------
foobar
(1 row)
SELECT unaccent('unaccent', 'L肆');
unaccent
----------
盘肆
(1 row)
SELECT unaccent('unaccent', '出殡');
unaccent
----------
弼殡
(1 row)
SELECT ts_lexize('unaccent', 'foobar');
ts_lexize
-----------
(1 row)
SELECT ts_lexize('unaccent', 'L肆');
ts_lexize
-----------
{盘肆}
(1 row)
SELECT ts_lexize('unaccent', '出殡');
ts_lexize
-----------
{弼殡}
(1 row)