Operation needed for datfrozenxid bug?

Поиск
Список
Период
Сортировка
От ITAGAKI Takahiro
Тема Operation needed for datfrozenxid bug?
Дата
Msg-id 20080929111542.8E96.52131E4D@oss.ntt.co.jp
обсуждение исходный текст
Список pgsql-hackers
Hello,

The datfrozenxid bug is fixed in 8.3.4,
but do I need additional operations after upgrade postgres binaries?

| Fix potential miscalculation of datfrozenxid (Alvaro)
|   This error may explain some recent reports of failure
|   to remove old pg_clog data. 

I assume that pg_database.datfrozenxid is wrongly set to 3
(FirstNormalTransactionId) if the bug has occurred.
 1. Can I use the following SQL to check whether the bug has occurred?       SELECT * FROM pg_database WHERE
datfrozenxid= 3    (will return some rows under the bug.)
 
 2. What is needed to fix the corrupted system catalog,    something like the following SQL?       UPDATE pg_database
SETdatfrozenxid = relfrozenxid         FROM (SELECT relfrozenxid FROM pg_class                WHERE relkind IN ('r',
't')               ORDER BY age(relfrozenxid) DESC LIMIT 1) AS tmp        WHERE datname = current_database();
 

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center



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

Предыдущее
От: pgsql@mohawksoft.com
Дата:
Сообщение: Re: Ad-hoc table type?
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: parallel pg_restore - WIP patch