[HACKERS] Relpartbound, toasting and pg_class

Поиск
Список
Период
Сортировка
От Andres Freund
Тема [HACKERS] Relpartbound, toasting and pg_class
Дата
Msg-id 20170612193833.r6jhoxfszqtzy7hi@alap3.anarazel.de
обсуждение исходный текст
Ответы Re: [HACKERS] Relpartbound, toasting and pg_class  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
Список pgsql-hackers
Hi,

Just noticed that pg_class now has several varlena fields:
#ifdef CATALOG_VARLEN            /* variable-length fields start here *//* NOTE: These fields are not present in a
relcacheentry's rd_rel field. */aclitem        relacl[1];        /* access permissions */text        reloptions[1];
/*access-method-specific options */pg_node_tree relpartbound;    /* partition bound node tree */
 
#endif

of those relpartbound is fairly new. And pretty much unbounded in
size. Aren't we going to run into issues because pg_class doesn't have a
toast table? It's quite reasonable to use a multi-field composite type
as a partition boundary...

Greetings,

Andres Freund



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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: [HACKERS] standby server crashes hard on out-of-disk-space inHEAD
Следующее
От: Robert Haas
Дата:
Сообщение: Re: [HACKERS] WIP: Data at rest encryption