1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Added functions :

* binary XOR
* logical XOR
* CHECK_LOCK("lock_name")
This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-06-29 16:25:09 +03:00
parent ade20c5b19
commit 816dc4eb28
13 changed files with 165 additions and 2 deletions

View File

@@ -15,7 +15,8 @@ select 2 between 1 and 3, "monty" between "max" and "my",2=2 and "monty" between
select 'b' between 'a' and 'c', 'B' between 'a' and 'c';
select 2 in (3,2,5,9,5,1),"monty" in ("david","monty","allan"), 1.2 in (1.4,1.2,1.0);
select -1.49 or -1.49,0.6 or 0.6;
select 3 ^ 11;
select 1 XOR 0;
#
# Wrong usage of functions
#