[COMMITTERS] pgsql: Fix broken error check in _hash_doinsert.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема [COMMITTERS] pgsql: Fix broken error check in _hash_doinsert.
Дата
Msg-id E1cK8v4-00038Y-Tu@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix broken error check in _hash_doinsert.

You can't just cast a HashMetaPage to a Page, because the meta page
data is stored after the page header, not at offset 0.  Fortunately,
this didn't break anything because it happens to find hashm_bsize
at the offset at which it expects to find pd_pagesize_version, and
the values are close enough to the same that this works out.

Still, it's a bug, so back-patch to all supported versions.

Mithun Cy, revised a bit by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/097e41439d69e11fb870e009b1ac64dda4f01c3d

Modified Files
--------------
src/backend/access/hash/hashinsert.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)


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

Предыдущее
От: Joe Conway
Дата:
Сообщение: [COMMITTERS] pgsql: Make dblink try harder to form useful error messages
Следующее
От: Andres Freund
Дата:
Сообщение: [COMMITTERS] pgsql: Skip checkpoints, archiving on idle systems.