pgsql: createdb: compare strategy case-insensitive

Поиск
Список
Период
Сортировка
От Tomas Vondra
Тема pgsql: createdb: compare strategy case-insensitive
Дата
Msg-id E1rycuJ-003DFM-Ly@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
createdb: compare strategy case-insensitive

When specifying the createdb strategy, the documentation suggests valid
options are FILE_COPY and WAL_LOG, but the code does case-sensitive
comparison and accepts only "file_copy" and "wal_log" as valid.

Fixed by doing a case-insensitive comparison using pg_strcasecmp(), same
as for other string parameters nearby.

While at it, apply fmtId() to a nearby "locale_provider". This already
did the comparison in case-insensitive way, but the value would not be
double-quoted, confusing the parser and the error message.

Backpatch to 15, where the strategy was introduced.

Backpatch-through: 15
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/90c6913a-1dd2-42b4-8365-ce3b09c39b17@enterprisedb.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8c239ee15a4b093523ebe30bdc9af186aaccebfd

Modified Files
--------------
src/backend/commands/dbcommands.c |  6 +++---
src/bin/scripts/createdb.c        |  2 +-
src/bin/scripts/t/020_createdb.pl | 10 ++++++++++
3 files changed, 14 insertions(+), 4 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Make postgres_fdw request remote time zone 'GMT' not 'UTC'.
Следующее
От: Tomas Vondra
Дата:
Сообщение: pgsql: createdb: compare strategy case-insensitive