Re: Avoid a potential unstable test case: xmlmap.sql - Mailing list pgsql-hackers

From Andy Fan
Subject Re: Avoid a potential unstable test case: xmlmap.sql
Date
Msg-id CAKU4AWqdh2FNv5JVap7QACj0e_a8eP=skPeOQittZ+maaqj9zQ@mail.gmail.com
Whole thread Raw
In response to Avoid a potential unstable test case: xmlmap.sql  (Andy Fan <zhihui.fan1213@gmail.com>)
List pgsql-hackers
I overlooked the fact even in the bitmap index scan loose mode,  the recheck
is still executed  before the qual, so bitmap index scan is OK in this case.

 Sort
   Output: oid, relname
   Sort Key: pg_class.relname
   ->  Bitmap Heap Scan on pg_catalog.pg_class
         Output: oid, relname
         Recheck Cond: (pg_class.relnamespace = '28601'::oid)
         Filter: (has_table_privilege(pg_class.oid, 'SELECT'::text) AND (pg_class.relkind = ANY ('{r,m,v}'::"char"[])))
         ->  Bitmap Index Scan on pg_class_relname_nsp_index
               Index Cond: (pg_class.relnamespace = '28601'::oid)

v2 attached. 

--
Best Regards
Andy Fan
Attachment

pgsql-hackers by date:

Previous
From: Andy Fan
Date:
Subject: Avoid a potential unstable test case: xmlmap.sql
Next
From: Etsuro Fujita
Date:
Subject: Test case for parameterized remote path in postgres_fdw