BETWEEN [SYMMETRIC | ASYMMETRIC]

Robert B. Easter <reaster@comptechnews.com>

From: "Robert B. Easter" <reaster@comptechnews.com>
To: pgsql-hackers@postgresql.org
Date: 2001-01-09T23:06:38Z
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@comptechnews.com ---------
-- CompTechNews Message Board http://www.comptechnews.com/ --
-- CompTechServ Tech Services http://www.comptechserv.com/ --
---------- http://www.comptechnews.com/~reaster/ ------------