pgsql: Use the correct type for TableInfo->relreplident.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Use the correct type for TableInfo->relreplident.
Дата
Msg-id E1ZQcVM-0004bj-St@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Use the correct type for TableInfo->relreplident.

Mistakenly relreplident was stored as a bool. That works today as c.h
typedefs bool to a char, but isn't very future proof.

Discussion: 20150812084351.GD8470@awork2.anarazel.de
Backpatch: 9.4 where replica identity was introduced.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/2360f01efa9041d75cab9a9e7640327979864b2c

Modified Files
--------------
src/bin/pg_dump/pg_dump.h |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Use the correct type for TableInfo->relreplident.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Don't use 'bool' as a struct member name in help_config.c.