[PATCH 2/2] Add a new function pg_relation_by_filenode to lookup up a relation given the tablespace and the filenode OIDs

Поиск
Список
Период
Сортировка
От Andres Freund
Тема [PATCH 2/2] Add a new function pg_relation_by_filenode to lookup up a relation given the tablespace and the filenode OIDs
Дата
Msg-id 1347833737-16484-3-git-send-email-andres@2ndquadrant.com
обсуждение исходный текст
Ответ на Add pg_relation_by_filenode(reltbspc, filenode) admin function  (Andres Freund <andres@2ndquadrant.com>)
Ответы Re: [PATCH 2/2] Add a new function pg_relation_by_filenode to lookup up a relation given the tablespace and the filenode OIDs
Список pgsql-hackers
This requires the previously added RELFILENODE syscache.
---
 doc/src/sgml/func.sgml         | 23 ++++++++++++-
 src/backend/utils/adt/dbsize.c | 78 ++++++++++++++++++++++++++++++++++++++++++
 src/include/catalog/pg_proc.h  |  2 ++
 src/include/utils/builtins.h   |  1 +
 4 files changed, 103 insertions(+), 1 deletion(-)


Вложения

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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Add pg_relation_by_filenode(reltbspc, filenode) admin function
Следующее
От: Andres Freund
Дата:
Сообщение: [PATCH 1/2] Add a new relmapper.c function RelationMapFilenodeToOid that acts as a reverse of RelationMapOidToFilenode