Re: BETWEEN SYMMETRIC/ASYMMETRIC - Mailing list pgsql-hackers

From Gavin Sherry
Subject Re: BETWEEN SYMMETRIC/ASYMMETRIC
Date
Msg-id Pine.LNX.4.21.0204101321110.8586-100000@linuxworld.com.au
Whole thread Raw
In response to BETWEEN SYMMETRIC/ASYMMETRIC  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Responses Re: BETWEEN SYMMETRIC/ASYMMETRIC  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
List pgsql-hackers
On Wed, 10 Apr 2002, Christopher Kings-Lynne wrote:

> Hi all,
> 
> I've attached a patch for doing BETWEEN SYM/ASYM, however it just doesn't
> work!!!
> 
> test=# select 2 between 1 and 3;
>  ?column?
> ----------
>  t
> (1 row)
> 
> test=# select 2 between 3 and 1;
>  ?column?
> ----------
>  f
> (1 row)
> 
> test=# select 2 between symmetric 3 and 1;
> ERROR:  parser: parse error at or near "3"
> test=# select 2 between asymmetric 3 and 1;
> ERROR:  parser: parse error at or near "3"

Chris,

You seem to have forgotten to update keywords.c.

Gavin




pgsql-hackers by date:

Previous
From: "Christopher Kings-Lynne"
Date:
Subject: BETWEEN SYMMETRIC/ASYMMETRIC
Next
From: "Christopher Kings-Lynne"
Date:
Subject: Re: BETWEEN SYMMETRIC/ASYMMETRIC