Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it - Mailing list pgsql-admin

From Ray Stell
Subject Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it
Date
Msg-id 20100209223952.GA11857@cns.vt.edu
Whole thread Raw
In response to VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it  (Ray Stell <stellr@cns.vt.edu>)
Responses Re: VACUUM WARNING: skipping "pg_statistic" --- only table or database owner can vacuum it  (Ray Stell <stellr@cns.vt.edu>)
List pgsql-admin
On Sat, Jan 30, 2010 at 09:59:36AM -0500, Ray Stell wrote:
> Running 8.2.15 on RHEL4 the log reports this from autovacuum along with
> other pg_ tables:
>
> VACUUM WARNING:  skipping "pg_database" --- only table or database owner can vacuum it


More logging shows the user generating the msg is not superuser.  The user
is named "admin," as it is an application administrator and it chokes
on all the rels in information_schema and pg_catalog.

fms=# select * from pg_user where usename = 'admin';
 usename | usesysid | usecreatedb | usesuper | usecatupd |  passwd  | valuntil | useconfig
---------+----------+-------------+----------+-----------+----------+----------+-----------
 admin   |    16385 | f           | f        | f         | ******** |          |
(1 row)

Superuser owns these rels:

fms=# select * from pg_tables where tablename = 'sql_sizing';
     schemaname     | tablename  | tableowner | tablespace | hasindexes | hasrules | hastriggers
--------------------+------------+------------+------------+------------+----------+-------------
 information_schema | sql_sizing | postgres   |            | f          | f        | f
(1 row)

This vacuum.c if clause that gets to the warning msg:

        if (!(pg_class_ownercheck(RelationGetRelid(onerel), GetUserId()) ||
                  (pg_database_ownercheck(MyDatabaseId, GetUserId()) && !onerel->rd_rel->relisshared)))

The following printf in the vacuum.c clause shows all is well, but
raises some questions:

  1  pg_class_ownercheck(RelationGetRelid(onerel), GetUserId())=0
  2  RelationGetRelid(onerel)=sql_sizing
  3  GetUserId()=16385
  4  pg_database_ownercheck(MyDatabaseId, GetUserId())=0
  5  MyDatabaseId=16384
  6  onerel->rd_rel->relisshared=0

Is autovacuum handing all users off to vacuum all rels?  Even those
it does not own?  Perhaps "admin" an unfortunate usename choice?

Thanks.


pgsql-admin by date:

Previous
From: Dimitri Fontaine
Date:
Subject: Re: Best Replication Tool
Next
From: Keith Gabryelski
Date:
Subject: pg_migrator from 32bit to 64bit arch -- does it work? caveats?