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
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
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);