Re: [GENERAL] About inheritance

2004-08-28 Thread Tom Lane
Ioannis Theoharis <[EMAIL PROTECTED]> writes: > I expekt explain analyze to give the same response time at both cases. But > i found that time increases as where as the level, where data are located, > increases. I see no such effect. regards, tom lane ---

Re: [GENERAL] About inheritance

2004-08-28 Thread Ioannis Theoharis
Thanks. Time is little but visible affected for big chierarhies. Let me do an other question. I have again a Root table and a hierarchie of tables, all created with the inherits relationship like: create table father(att0 int4); create table child1() inherits(father); create table child2() i