/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/regress/expected/nls.out
53 строки
2 KB
Tom Lane
Test PRI* macros even when we can't test NLS translation.
16 дек 2025, 20:01
16 дек 2025, 20:01
462e247
Код
Авторство
О чём код?
-- directory paths and dlsuffix are passed to us in environment variables \getenv libdir PG_LIBDIR \getenv dlsuffix PG_DLSUFFIX \set regresslib :libdir '/regress' :dlsuffix CREATE FUNCTION test_translation() RETURNS void AS :'regresslib' LANGUAGE C; -- There's less standardization in locale name spellings than one could wish. -- While some platforms insist on having a codeset name in lc_messages, -- fortunately it seems that it need not match the actual database encoding. -- However, if no es_ES locale is installed at all, this'll fail. SET lc_messages = 'C'; do $$ declare locale text; ok bool; begin for locale in values('es_ES'), ('es_ES.UTF-8'), ('es_ES.utf8') loop ok = true; begin execute format('set lc_messages = %L', locale); exception when invalid_parameter_value then ok = false; end; exit when ok; end loop; -- Don't clutter the expected results with this info, just log it raise log 'NLS regression test: lc_messages = %', current_setting('lc_messages'); end $$; SELECT test_translation(); NOTICE: traducido PRId64 = 424242424242 NOTICE: traducido PRId32 = -1234 NOTICE: traducido PRIdMAX = -123456789012 NOTICE: traducido PRIdPTR = -9999 NOTICE: traducido PRIu64 = 424242424242 NOTICE: traducido PRIu32 = 4294966062 NOTICE: traducido PRIuMAX = 123456789012 NOTICE: traducido PRIuPTR = 9999 NOTICE: traducido PRIx64 = 62c6d1a9b2 NOTICE: traducido PRIx32 = fffffb2e NOTICE: traducido PRIxMAX = 1cbe991a14 NOTICE: traducido PRIxPTR = 270f NOTICE: traducido PRIX64 = 62C6D1A9B2 NOTICE: traducido PRIX32 = FFFFFB2E NOTICE: traducido PRIXMAX = 1CBE991A14 NOTICE: traducido PRIXPTR = 270F test_translation ------------------ (1 row) RESET lc_messages;