pgsql: Fix table dump in pg_dump[all] with backends older than 9.5

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix table dump in pg_dump[all] with backends older than 9.5
Дата
Msg-id E1hTxCD-0004V0-Ef@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix table dump in pg_dump[all] with backends older than 9.5

The access method name "amname" can be dumped as of 3b925e90, but
queries for backends older than 9.5 forgot to map it to a dummy NULL
value, causing the column to not be mapped to a number.  As a result,
pg_dump was throwing some spurious errors in its stderr output coming
from libpq:
pg_dump: column number -1 is out of range 0..36

Fix this issue by adding a mapping of "amname" to NULL to all the older
queries.

Discussion: https://postgr.es/m/20190522083038.GA16837@paquier.xyz
Author: Michael Paquier
Reviewed-by: Dmitry Dolgov, Andres Freund, Tom Lane

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/54487d1560619a0027e0651d1b8d715ca8fc388c

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 8 ++++++++
1 file changed, 8 insertions(+)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: pg_upgrade: Make test.sh's installcheck use to-be-upgradedversi
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: tableam: Rename wrapper functions to match callback names.