BUG #13830: pg_table_size and pg_indexes_size

From: foggyglass(at)163(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #13830: pg_table_size and pg_indexes_size
Date: 2015-12-23 14:55:46
Message-ID: 20151223145546.2688.94659@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 13830
Logged by: T_T
Email address: foggyglass(at)163(dot)com
PostgreSQL version: 9.5rc1
Operating system: centos7
Description:

Hi friend,
I think there is a error about pg_table_size and pg_indexes_size in
PostgreSQL .
This is my operation log

[postgres(at)c7 bin]$./psql
psql (9.5beta2)
Type "help" for help.

postgres=# create table b(id int);
CREATE TABLE
postgres=# create index b_idx on b(id);
CREATE INDEX
postgres=# select relname , pg_table_size(oid),pg_indexes_size(oid)
postgres-# from pg_class where relname in ('b','b_idx');
relname | pg_table_size | pg_indexes_size
---------+---------------+-----------------
b | 0 | 8192
b_idx | 8192 | 0
(2 rows)

postgres=#

The b_idex is a index , but pg_indexes_size does not show its size . The b
is a table , but pg_table_size does not show its size .I think the
pg_table_size show the b size , but not pg_indexes_size .

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2015-12-23 16:44:53 Re: BUG #13741: vacuumdb does not accept valid password
Previous Message Michael Paquier 2015-12-23 13:52:20 Re: BUG #13741: vacuumdb does not accept valid password