Re: WIP: Rework access method interface - Mailing list pgsql-hackers

From Alexander Korotkov
Subject Re: WIP: Rework access method interface
Date
Msg-id CAPpHfdvMTtLr-Rrue8mH-fS0Ou4QgdMC5qFJ8dgnDX2XL-tksQ@mail.gmail.com
Whole thread Raw
In response to Re: WIP: Rework access method interface  (Petr Jelinek <petr@2ndquadrant.com>)
Responses Re: WIP: Rework access method interface  (Petr Jelinek <petr@2ndquadrant.com>)
Re: WIP: Rework access method interface  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Re: WIP: Rework access method interface  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: WIP: Rework access method interface  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Hi!

On Mon, Dec 14, 2015 at 5:26 PM, Petr Jelinek <petr@2ndquadrant.com> wrote:
I went over this.

I get these compiler warning about unused variables in the validation functions:
brin.c: In function ‘brinvalidate’:
brin.c:94:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^
ginutil.c: In function ‘ginvalidate’:
ginutil.c:86:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^
gist.c: In function ‘gistvalidate’:
gist.c:101:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^
hash.c: In function ‘hashvalidate’:
hash.c:103:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^
nbtree.c: In function ‘btvalidate’:
nbtree.c:134:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^
nbtree.c:133:6: warning: variable ‘intype’ set but not used [-Wunused-but-set-variable]
      intype,
      ^
spgutils.c: In function ‘spgvalidate’:
spgutils.c:88:6: warning: variable ‘keytype’ set but not used [-Wunused-but-set-variable]
      keytype;
      ^

These look like copy-pastos of boilerplate.
 
​Fixed in the attached version of patch.

Another note is that amvalidate SQL interface is not documented anywhere. I know it's mainly meant for regression tests and we for example don't document hashing functions but it's something to think about/discuss maybe.

What do you think about
​"​
System Administration Functions
​" chapter?
 
Other than that I am happy with the patch.

​Great!​

------
Alexander Korotkov
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company
 
Attachment

pgsql-hackers by date:

Previous
From: Simon Riggs
Date:
Subject: Re: WIP: bloom filter in Hash Joins with batches
Next
From: Dmitry Ivanov
Date:
Subject: Re: [PROPOSAL] Backup and recovery of pg_statistic