Comment 5 for bug 815882

Revision history for this message
Guillaume Lelarge (guillaume-lelarge-info) wrote :

I tried today with a simple schema:

CREATE TABLE t1 (
    c1 integer NOT NULL,
    c2 text
);
CREATE TABLE t2 (
    c3 boolean
)
INHERITS (t1);
CREATE TABLE t3 (
    c1t3 bigint,
    c2t3 boolean
);
CREATE TABLE t4 (
    c5 character varying
)
INHERITS (t1, t3);

Mono inheritance (t2) and multi inheritance (t4), as you can see. Works great on 1.14, the next stable release.