pgsql: Fix crash in CREATE UNLOGGED TABLE.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема pgsql: Fix crash in CREATE UNLOGGED TABLE.
Дата
Msg-id E1QXcym-0001DP-0Q@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix crash in CREATE UNLOGGED TABLE.

The code that created the init fork neglected to make sure that the
relation was open at the smgr level before attempting to invoke smgr.
This didn't happen every time; only when the relcache entry was rebuilt
along the way.

Per report from Garick Hamlin.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/bf347c60bdd7e05800f0c06d03e2ad87aeaa5e09

Modified Files
--------------
src/backend/catalog/heap.c |    1 +
1 files changed, 1 insertions(+), 0 deletions(-)


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

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Fix crash in CREATE UNLOGGED TABLE.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Add overflow checks to int4 and int8 versions of generate_series