Re: BETWEEN SYMMETRIC/ASYMMETRIC

From: Gavin Sherry <swm(at)linuxworld(dot)com(dot)au>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: BETWEEN SYMMETRIC/ASYMMETRIC
Date: 2002-04-10 03:21:57
Message-ID: Pine.LNX.4.21.0204101321110.8586-100000@linuxworld.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Christopher Kings-Lynne 2002-04-10 03:38:04 Re: BETWEEN SYMMETRIC/ASYMMETRIC
Previous Message Christopher Kings-Lynne 2002-04-10 03:02:30 BETWEEN SYMMETRIC/ASYMMETRIC