greetings,
i planning on making heavy use of the postgresql
inheritance features for a large scale application
and i was wondering if anyone has run into any interesting
errata regarding this that i should be aware of.
bugs, features, caveats, side notes etc..
Jeff MacDonald,
---
it would appear my first mail didn't go thru
the basic gist was,
can anyone point out any caveats/pitfalls to the
postgresql inheritance functions..
On Tue, 19 Sep 2000, Jeff MacDonald wrote:
> i just found a (few) caveat already..
>
> 1:
>
> bignose=# create table people(
> bignose(# name
i just found a (few) caveat already..
1:
bignose=# create table people(
bignose(# name varchar(64),
bignose(# age int8,
bignose(# sin int4,
bignose(# id serial);
bignose=# create table soldier(
bignose(# rank varchar(32),
bignose(# post varchar(32)) inherits (people);
bignose=# alter table p