Re: WIP: Rework access method interface

From: Alexander Korotkov <a(dot)korotkov(at)postgrespro(dot)ru>
To: Petr Jelinek <petr(at)2ndquadrant(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, Teodor Sigaev <teodor(at)sigaev(dot)ru>, Jim Nasby <Jim(dot)Nasby(at)bluetreble(dot)com>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Heikki Linnakangas <hlinnaka(at)iki(dot)fi>, Robert Haas <robertmhaas(at)gmail(dot)com>
Subject: Re: WIP: Rework access method interface
Date: 2015-12-24 13:57:21
Message-ID: CAPpHfdvMTtLr-Rrue8mH-fS0Ou4QgdMC5qFJ8dgnDX2XL-tksQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi!

On Mon, Dec 14, 2015 at 5:26 PM, Petr Jelinek <petr(at)2ndquadrant(dot)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?
http://www.postgresql.org/docs/devel/static/functions-admin.html

> Other than that I am happy with the patch.

​Great!​

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

Attachment Content-Type Size
aminterface-13.patch application/octet-stream 266.8 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dmitry Ivanov 2015-12-24 14:28:11 Re: [PROPOSAL] Backup and recovery of pg_statistic
Previous Message Simon Riggs 2015-12-24 13:51:15 Re: WIP: bloom filter in Hash Joins with batches