[BUGS] BUG #8192: On very large tables the concurrent update with vacuum lag the hot_standby replica

2013-05-30 Thread federico
The following bug has been logged on the website: Bug reference: 8192 Logged by: Federico Campoli Email address: feder...@brandwatch.com PostgreSQL version: 9.2.4 Operating system: Debian 6.0 Description: /* Description: It seems on very large tables the concurrent

[BUGS] BUG #8190: Issue with slony-I replication on postgres master and slave database

2013-05-30 Thread vishnu . singh
The following bug has been logged on the website: Bug reference: 8190 Logged by: sunarc Email address: vishnu.si...@sunarctechnologies.com PostgreSQL version: 9.2.4 Operating system: windows 8 pro Description: I have two system with OS windows 8 and windows XP. I in

[BUGS] pg_statistics bloat after drop table

2013-05-30 Thread hubert depesz lubaczewski
Tested on todays HEAD of 9.3. Steps to reproduce: $ create table t1 (i int4); CREATE TABLE $ insert into t1 (i) values (1); INSERT 0 1 $ analyze t1; ANALYZE $ select count(*) from pg_statistic where starelid = 't1'::regclass; count --- 1 (1 row) $ create table t2 () inherits (t1);