pgsql: Fix the MSVC build for versions 2015 and later.

Поиск
Список
Период
Сортировка
От Amit Kapila
Тема pgsql: Fix the MSVC build for versions 2015 and later.
Дата
Msg-id E1jZ5UY-00086H-O9@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix the MSVC build for versions 2015 and later.

Visual Studio 2015 and later versions should still be able to do the same
as Visual Studio 2012, but the declaration of locale_name is missing in
_locale_t, causing the code compilation to fail, hence this falls back
instead on to enumerating all system locales by using EnumSystemLocalesEx
to find the required locale name.  If the input argument is in Unix-style
then we can get ISO Locale name directly by using GetLocaleInfoEx() with
LCType as LOCALE_SNAME.

In passing, change the documentation references of the now obsolete links.

Note that this problem occurs only with NLS enabled builds.

Author: Juan José Santamaría Flecha, Davinder Singh and Amit Kapila
Reviewed-by: Ranier Vilela and Amit Kapila
Backpatch-through: 9.5
Discussion: https://postgr.es/m/CAHzhFSFoJEWezR96um4-rg5W6m2Rj9Ud2CNZvV4NWc9tXV7aXQ@mail.gmail.com

Branch
------
REL9_5_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/650952aebbc8118f4d73bc519e9ecc82b0e0ce04

Modified Files
--------------
src/backend/utils/adt/pg_locale.c | 183 ++++++++++++++++++++++++++++++++++++--
1 file changed, 175 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Noah Misch
Дата:
Сообщение: pgsql: Fix pg_recvlogical avoidance of superfluous Standby Status Updat
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Move check for fsync=off so that pendingOps still gets cleared.