Re: dbsize patch

Поиск
Список
Период
Сортировка
От Andreas Pflug
Тема Re: dbsize patch
Дата
Msg-id 41F8F3D1.1040408@pse-consulting.de
обсуждение исходный текст
Ответ на Re: dbsize patch  (Neil Conway <neilc@samurai.com>)
Ответы Re: dbsize patch  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: dbsize patch  ("Ed L." <pgsql@bluepolka.net>)
Список pgsql-patches
Neil Conway wrote:
> On Tue, 2005-01-25 at 16:49 -0700, Ed L. wrote:
>
>>The attached dbsize patch:
>>
>>    + makes relation_size(relname) include toast tables;
>>    + adds aggregate_relation_size(relname) to count table data and indices;
>>    + adds indices_size(relname) to report the size of indices for a relation;

Hm, these are all implementable as SQL functions, do we need these hard
coded too?

e.g.
create function aggregate_relation_size(oid) returns int8 as $CODE$
select sum(pg_relation_size(indexrelid)) from pg_index where indrelid=$1;
$CODE$ language 'SQL'

Regards,
Andreas

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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: pg_autovacuum Win32 Service startup delay
Следующее
От: Tom Lane
Дата:
Сообщение: Re: dbsize patch