mirror of
https://github.com/MariaDB/server.git
synced 2025-06-03 07:02:23 +03:00
Added mysqltest for <=> Removed use of TAB in output from mysql-test-run Docs/manual.texi: Changelog client/mysqltest.c: Added missing argument; Changed to use standard defines mysql-test/README: Cleaned up mysql-test/mysql-test-run.sh: Removed use of TAB in output (We are now also depening on sed) sql/item_cmpfunc.cc: Fixed <=> sql/item_cmpfunc.h: Fixed <=>
30 lines
641 B
Plaintext
30 lines
641 B
Plaintext
#
|
|
# Testing of the <=> operator
|
|
#
|
|
|
|
#
|
|
# First some simple tests
|
|
#
|
|
|
|
select 0<=>0,0.0<=>0.0,"A"<=>"A",NULL<=>NULL;
|
|
select 1<=>0,0<=>NULL,NULL<=>0;
|
|
select 1.0<=>0.0,0.0<=>NULL,NULL<=>0.0;
|
|
select "A"<=>"B","A"<=>NULL,NULL<=>"A";
|
|
|
|
#
|
|
# Test with tables
|
|
#
|
|
|
|
drop table if exists t1,t2;
|
|
create table t1 (id int, value int);
|
|
create table t2 (id int, value int);
|
|
|
|
insert into t1 values (1,null);
|
|
insert into t2 values (1,null);
|
|
|
|
select t1.*, t2.*, t1.value<=>t2.value from t1, t2 where t1.id=t2.id and t1.id=1;
|
|
select * from t1 where id <=>id;
|
|
select * from t1 where value <=> value;
|
|
select * from t1 where id <=> value or value<=>id;
|
|
drop table t1,t2;
|