BETWEEN [SYMMETRIC | ASYMMETRIC]

From: "Robert B(dot) Easter" <reaster(at)comptechnews(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: BETWEEN [SYMMETRIC | ASYMMETRIC]
Date: 2001-01-09 23:06:38
Message-ID: 0101091806381X.09559@comptechnews
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Here is current cvs:

SELECT 2 BETWEEN 1 AND 3;
?column?
----------
t
(1 row)

subselects=# SELECT 2 BETWEEN 3 AND 1;
?column?
----------
f
(1 row)

Any chance of BETWEEN [SYMMETRIC | ASYMMETRIC] being implemented?

SELECT 2 BETWEEN SYMMETRIC 3 AND 1;
?column?
----------
t
(1 row)

ASYMMETRIC is the default and what is currently the case. This would
probably be easy TODO.

--
-------- Robert B. Easter reaster(at)comptechnews(dot)com ---------
-- CompTechNews Message Board http://www.comptechnews.com/ --
-- CompTechServ Tech Services http://www.comptechserv.com/ --
---------- http://www.comptechnews.com/~reaster/ ------------

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Lamar Owen 2001-01-09 23:11:11 Re: Re: Beta2 ... ?
Previous Message Michael J Schout 2001-01-09 22:25:02 Re: Re: Beta2 ... ?