Re: pg_dump fails to set index ownership

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: pg_dump fails to set index ownership
Date: 2005-01-11 05:57:55
Message-ID: 20050111055755.GA8788@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Tue, Jan 11, 2005 at 12:25:31AM -0500, Tom Lane wrote:

> A related point is that ALTER TABLE ... OWNER does not recurse to
> the table's indexes.

Eh? ALTER TABLE ... OWNER won't touch the indexes if the table
owner doesn't change, but if the table owner changes then so do
the index owners. I don't know what behavior is intended, but
that's what currently happens:

SELECT relname, relkind, relowner FROM pg_class WHERE relname LIKE 'foo%';
relname | relkind | relowner
------------+---------+----------
foo | r | 100
foo_id_seq | S | 100
foo_pkey | i | 1
(3 rows)

ALTER TABLE foo OWNER TO mfuhr; -- mfuhr = 100, so no table owner change
SELECT relname, relkind, relowner FROM pg_class WHERE relname LIKE 'foo%';
relname | relkind | relowner
------------+---------+----------
foo | r | 100
foo_id_seq | S | 100
foo_pkey | i | 1
(3 rows)

ALTER TABLE foo OWNER TO postgres; -- table owner change
SELECT relname, relkind, relowner FROM pg_class WHERE relname LIKE 'foo%';
relname | relkind | relowner
------------+---------+----------
foo | r | 1
foo_id_seq | S | 1
foo_pkey | i | 1
(3 rows)

ALTER TABLE foo OWNER TO mfuhr; -- table owner change
SELECT relname, relkind, relowner FROM pg_class WHERE relname LIKE 'foo%';
relname | relkind | relowner
------------+---------+----------
foo | r | 100
foo_id_seq | S | 100
foo_pkey | i | 100
(3 rows)

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2005-01-11 06:10:59 Re: BUG #1381: invalid input syntax for integer: ""
Previous Message Nicolas Addington 2005-01-11 05:28:30 BUG #1381: invalid input syntax for integer: ""