Re: [COMMITTERS] pgsql: Add infrastructure to supportEphemeralNamedRelation references. - Mailing list pgsql-committers

From Andres Freund
Subject Re: [COMMITTERS] pgsql: Add infrastructure to supportEphemeralNamedRelation references.
Date
Msg-id 20170406211904.4hzfdir6gyvlct2q@alap3.anarazel.de
Whole thread Raw
Responses Re: [COMMITTERS] pgsql: Add infrastructure to supportEphemeralNamedRelation references.
List pgsql-committers
Hi,

On 2017-04-01 04:24:25 +0000, Kevin Grittner wrote:
> Add infrastructure to support EphemeralNamedRelation references.

My compiler, quite justifiedly, complains:

/home/andres/src/postgresql/src/backend/parser/parse_relation.c: In function ‘get_rte_attribute_is_dropped’:
/home/andres/src/postgresql/src/backend/parser/parse_relation.c:2899:43: warning: comparison between pointer and zero
characterconstant [-Wpointer-compare] 
      (list_nth(rte->coltypes, attnum - 1) != InvalidOid);
                                           ^~
/home/andres/src/postgresql/src/backend/parser/parse_relation.c:2899:7: note: did you mean to dereference the pointer?
      (list_nth(rte->coltypes, attnum - 1) != InvalidOid);
       ^

- Andres


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: [COMMITTERS] pgsql: Fix BRIN cost estimation
Next
From: Andres Freund
Date:
Subject: [COMMITTERS] pgsql: Fix parallel bitmapscan tests on builds without USE_PREFETCH.