Is it good to have toast table for information schema table?

Поиск
Список
Период
Сортировка
От AI Rumman
Тема Is it good to have toast table for information schema table?
Дата
Msg-id CAGoODpesDhSuNdMyi85w+DKMej-+iQsxa2ip2xpZxBhqDUKAfQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: Is it good to have toast table for information schema table?  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
Hi,

Is it good to have toast table for information schema table? I am using Postgresql 8.4 and current state is:

select datname, datfrozenxid from pg_database;           
  datname  | datfrozenxid 
-----------+--------------
 template1 |   1462730397
 template0 |   1462741467
 postgres  |   1562754912
 jangles   |   1459615432
(4 rows)


select * from pg_class  where relfrozenxid  = 1459615432;
    relname     | reltoastidxid | relhasindex | relfrozenxid 
----------------+---------------+-------------+--------------
 pg_toast_11447 |         11451 | t           |   1459615432 
(1 row)


select 11447::regclass;                                  
            regclass             
---------------------------------
 information_schema.sql_features
(1 row)

Please advice.

Thanks.

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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Using 9.3 as a slave to 9.1 for upgrade purposes
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Is it good to have toast table for information schema table?