blob: 9c6ff495418ace3510fdf3eee102b8060a7d0f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* This test is for Linux/glibc systems (conceivably it could be run on
* others that implement proper classification of high Unicode characters).
* It must be run in a database with UTF8 encoding and a Unicode-aware locale.
*/
SELECT getdatabaseencoding() <> 'UTF8' OR
current_setting('lc_ctype') = 'C' OR
version() !~ 'linux-gnu'
AS skip_test \gset
\if :skip_test
\quit
|