Re: Fixes for missing schema qualifications

Tatsuo Ishii <ishii@sraoss.co.jp>

From: Tatsuo Ishii <ishii@sraoss.co.jp>
To: noah@leadboat.com
Cc: michael@paquier.xyz, pgsql-hackers@postgresql.org
Date: 2018-03-14T00:11:53Z
Lists: pgsql-hackers
>>> +					 "select pg_catalog.count(*) "
>>> +					 "from pg_catalog.pg_namespace where nspname = '%s'",
>> 
>> This qualifies some functions, but it leaves plenty of unqualified operators.
> 
> So this should go something like this?
> 
> select pg_catalog.count(*) from pg_catalog.pg_namespace where nameeq(nspname, '%s');

Oops. I meant:

select pg_catalog.count(*) from pg_catalog.pg_namespace where pg_catalog.nameeq(nspname, '%s');

Best regards,
--
Tatsuo Ishii
SRA OSS, Inc. Japan
English: http://www.sraoss.co.jp/index_en.php
Japanese:http://www.sraoss.co.jp


Commits

  1. Add some missing schema qualifications