RE: WARNING: owner of type appears to be invalid?

From: "Marc Sherman" <msherman(at)projectile(dot)ca>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-admin(at)postgresql(dot)org>
Subject: RE: WARNING: owner of type appears to be invalid?
Date: 2001-05-23 19:52:01
Message-ID: NFBBIHBOMKCAGGHPKDJHCEFBCEAA.msherman@projectile.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

From: Tom Lane [mailto:tgl(at)sss(dot)pgh(dot)pa(dot)us]
>
> "Marc Sherman" <msherman(at)projectile(dot)ca> writes:
> > I recently installed postgresql 7.1.1, and now when I run pg_dumpall
> > (which I do in a nightly script for backups), I get the following
> > messages, duplicated for each database in the system:
>
> > WARNING: owner of type 'pg_inherits' appears to be invalid
> > WARNING: owner of type 'pg_index' appears to be invalid
>
> Sounds like you have no pg_shadow entry for the postgres user.

No, that's not it:

template1=# select * from pg_shadow;
usename | usesysid | usecreatedb | usetrace | usesuper | usecatupd |
passwd | valuntil
----------+----------+-------------+----------+----------+-----------+------
--+----------
postgres | 31 | t | t | t | t |
|
msherman | 1000 | t | f | f | f |
|
www-data | 33 | f | f | f | f |
|
(3 rows)

This is strange, though -- the problem types have typowner set
to 103 in pg_type, which is clearly invalid. 103 happens to be
the Linux user ID (in passwd) for the postgres user. Strange.

I suspect this may be a problem with the Debian install scripts;
Debian is forcing postgres' user id to be 31 in the db, since it
used to use a reserved user id for postgres in the os.

Is it enough for me to log on to each of my databases as user
postgres, and execute the query "update pg_type set typowner=31
where typowner=103;" to fix this problem? Are there any other
hidden databases I should fix besides template1?

Thanks for pointing me in the right direction, Tom.

- Marc

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2001-05-23 20:16:29 Re: WARNING: owner of type appears to be invalid?
Previous Message Tom Lane 2001-05-23 19:36:18 Re: WARNING: owner of type appears to be invalid?