Re: Getting fancy errors when accessing information_schema on 10.5

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Axel Rau <Axel(dot)Rau(at)Chaos1(dot)DE>
Cc: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Getting fancy errors when accessing information_schema on 10.5
Date: 2018-10-30 12:17:14
Message-ID: 20191.1540901834@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-hackers

Axel Rau <Axel(dot)Rau(at)Chaos1(dot)DE> writes:
>> Am 30.10.2018 um 08:42 schrieb Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>:
>> Could you run EXPLAIN on the query and tell us the execution plan?

> EXPLAIN SELECT sequence_name AS relname, sequence_schema AS schemaname
> FROM information_schema.sequences
> WHERE sequence_schema NOT LIKE 'pg\_%' AND sequence_schema != 'information_schema';
> ...
> -> Seq Scan on pg_class c (cost=0.00..28.56 rows=22 width=72)
> Filter: ((pg_has_role(relowner, 'USAGE'::text) OR has_sequence_privilege(oid, 'SELECT, UPDATE, USAGE'::text)) AND (relkind = 'S'::"char"))

Well, there's the problem: for some reason the planner is deciding to
execute the privilege test before the relkind check.

>> Perhaps this is some fancy kind of catalog corruption…

> Maybe, as this does not happen with another instance.

It doesn't happen for me either. Looking at the planner code, it seems
like the relkind check should happen first because it'd be cheaper than
the OR condition. Have you perhaps messed with the cost attributed to
pg_has_role(), has_sequence_privilege(), or chareq()? You could
investigate with, eg,

select oid::regprocedure, procost from pg_proc
where proname = 'has_sequence_privilege';

regards, tom lane

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Axel Rau 2018-10-30 12:31:29 Re: Getting fancy errors when accessing information_schema on 10.5
Previous Message Subodh Kumar 2018-10-30 11:52:29 creating table without columns

Browse pgsql-hackers by date

  From Date Subject
Next Message Amit Langote 2018-10-30 12:24:01 Re: ToDo: show size of partitioned table
Previous Message Andreas 'ads' Scherbaum 2018-10-30 11:54:33 Re: INSTALL file