Re: BUG #9227: Error on SELECT ROW OVERLAPS ROW with single ROW argument

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Joshua Yanovski <pythonesque(at)gmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #9227: Error on SELECT ROW OVERLAPS ROW with single ROW argument
Date: 2014-02-18 18:01:50
Message-ID: 7822.1392746510@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Joshua Yanovski <pythonesque(at)gmail(dot)com> writes:
> Great, thanks. Yeah, I was thinking about that too--I am not sure if
> there are any other examples of a time where Postgres deliberately
> duplicates an argument like that (maybe there could be a check for it
> to be a constexpr or something? But that information isn't available
> at this point in the analysis process).

Yeah, BETWEEN is like that. I'd like to fix it sometime, but it's
kind of problematic because of the risk of losing index optimizations
(which only understand x >= y and x <= z, not a hypothetical combined
node).

I think there are no other examples (CASE used to be one, but we fixed
that long ago), but haven't trawled the grammar to be sure.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2014-02-18 18:39:41 Re: BUG #9227: Error on SELECT ROW OVERLAPS ROW with single ROW argument
Previous Message Joshua Yanovski 2014-02-18 17:54:54 Re: BUG #9227: Error on SELECT ROW OVERLAPS ROW with single ROW argument