mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
4b98b613f6
This is to help make it more obvious what the problem is, if the encoding isn't what the test expects.
23 lines
508 B
PL/PgSQL
23 lines
508 B
PL/PgSQL
SET client_min_messages = warning;
|
|
\set ECHO none
|
|
\i unaccent.sql
|
|
\set ECHO all
|
|
RESET client_min_messages;
|
|
|
|
-- must have a UTF8 database
|
|
SELECT getdatabaseencoding();
|
|
|
|
SET client_encoding TO 'KOI8';
|
|
|
|
SELECT unaccent('foobar');
|
|
SELECT unaccent('L肆');
|
|
SELECT unaccent('出殡');
|
|
|
|
SELECT unaccent('unaccent', 'foobar');
|
|
SELECT unaccent('unaccent', 'L肆');
|
|
SELECT unaccent('unaccent', '出殡');
|
|
|
|
SELECT ts_lexize('unaccent', 'foobar');
|
|
SELECT ts_lexize('unaccent', 'L肆');
|
|
SELECT ts_lexize('unaccent', '出殡');
|