Re: pgsql: Add infrastructure to support EphemeralNamedRelation references.

From: Andres Freund <andres(at)anarazel(dot)de>
To: Kevin Grittner <kgrittn(at)postgresql(dot)org>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql: Add infrastructure to support EphemeralNamedRelation references.
Date: 2017-04-06 21:19:04
Message-ID: 20170406211904.4hzfdir6gyvlct2q@alap3.anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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 character constant [-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

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2017-04-06 21:23:00 pgsql: Fix parallel bitmapscan tests on builds without USE_PREFETCH.
Previous Message Andres Freund 2017-04-06 21:11:35 Re: [COMMITTERS] pgsql: Increase parallel bitmap scan test coverage.