Multiple inheritance and ALTER TABLE issue - Mailing list pgsql-bugs

From Manuel Rigger
Subject Multiple inheritance and ALTER TABLE issue
Date
Msg-id CA+u7OA4qogDv9rz1HAb-ADxttXYPqQdUdPY_yd4kCzywNxRQXA@mail.gmail.com
Whole thread Raw
Responses Re: Multiple inheritance and ALTER TABLE issue  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
Hi everyone,

Consider the test case below:

CREATE TABLE t0(c0 boolean);
CREATE TABLE t1(c0 boolean);
CREATE TABLE t2(c0 boolean) INHERITS(t0, t1);
ALTER TABLE t0 ALTER c0 TYPE TEXT;
UPDATE t1 SET c0 = TRUE; -- ERROR:  attribute "c0" of relation "t2"
does not match parent's type

The ALTER TABLE leaves t1 behind in an unusable state, which is
somewhat unexpected. I would expect that either the ALTER TABLE fails
unless also t1 is explicitly updated, or that the ALTER TABLE updates
the column in t1. Updating the other tables does not cause a problem:

UPDATE t2 SET c0 = TRUE; -- no error
UPDATE t0 SET c0 = 'asdf'; -- no error

Is this behavior intended? The documentation mentions that ALTER TABLE
"will propagate any changes in column data definitions and check
constraints down the inheritance hierarchy", but not up the
inheritance hierarchy, so this might be expected.

Best,
Manuel



pgsql-bugs by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: DISCARD TEMP results in "ERROR: cache lookup failed for type 0"
Next
From: PG Bug reporting form
Date:
Subject: BUG #15929: logical decoding can not write down the analyse result when the output file is touched.