mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
87e6c2ba77
added string length for more speed made code covarage for print() method of Item fixed printability of some items (SCRUM) (WL#1274) mysql-test/r/auto_increment.result: print() code coverage mysql-test/r/bench_count_distinct.result: print() code coverage mysql-test/r/case.result: print() code coverage mysql-test/r/cast.result: print() code coverage mysql-test/r/ctype_collate.result: print() code coverage mysql-test/r/ctype_many.result: convert with 3 arguments code covarage print() code coverage mysql-test/r/ctype_utf8.result: char_length code coverage mysql-test/r/date_formats.result: print() code coverage mysql-test/r/fulltext.result: print() code coverage mysql-test/r/func_compress.result: print() code coverage mysql-test/r/func_gconcat.result: print() code coverage mysql-test/r/func_group.result: bit_xor() code coverage print() code coverage mysql-test/r/func_if.result: nullif() code coverage print() code coverage mysql-test/r/func_in.result: print() code coverage mysql-test/r/func_math.result: print() code coverage mysql-test/r/func_op.result: print() code coverage mysql-test/r/func_regexp.result: print() code coverage mysql-test/r/func_set.result: print() code coverage mysql-test/r/func_str.result: crc32() code coverage print() code coverage mysql-test/r/func_system.result: print() code coverage mysql-test/r/func_test.result: print() code coverage mysql-test/r/func_time.result: print() code coverage mysql-test/r/group_by.result: print() code coverage mysql-test/r/having.result: print() code coverage mysql-test/r/insert_update.result: print() code coverage mysql-test/r/null.result: print() code coverage mysql-test/r/olap.result: print() code coverage mysql-test/r/query_cache.result: print() code coverage mysql-test/r/row.result: print() code coverage mysql-test/r/rpl000001.result: print() code coverage mysql-test/r/rpl_get_lock.result: print() code coverage mysql-test/r/rpl_master_pos_wait.result: print() code coverage mysql-test/r/select.result: print() code coverage mysql-test/r/subselect.result: print() code coverage mysql-test/r/type_blob.result: print() code coverage mysql-test/r/varbinary.result: print() code coverage mysql-test/r/variables.result: print() code coverage mysql-test/t/auto_increment.test: print() code coverage mysql-test/t/bench_count_distinct.test: print() code coverage mysql-test/t/case.test: print() code coverage mysql-test/t/cast.test: print() code coverage mysql-test/t/ctype_collate.test: print() code coverage mysql-test/t/ctype_many.test: convert with 3 arguments code covarage print() code coverage mysql-test/t/ctype_utf8.test: char_length code coverage mysql-test/t/date_formats.test: print() code coverage mysql-test/t/fulltext.test: print() code coverage mysql-test/t/func_compress.test: print() code coverage mysql-test/t/func_gconcat.test: print() code coverage mysql-test/t/func_group.test: bit_xor() code coverage print() code coverage mysql-test/t/func_if.test: nullif() code coverage print() code coverage mysql-test/t/func_in.test: print() code coverage mysql-test/t/func_math.test: print() code coverage mysql-test/t/func_op.test: print() code coverage mysql-test/t/func_regexp.test: print() code coverage mysql-test/t/func_set.test: print() code coverage mysql-test/t/func_str.test: crc32() code covarage print() code coverage mysql-test/t/func_system.test: print() code coverage mysql-test/t/func_test.test: print() code coverage mysql-test/t/func_time.test: print() code coverage mysql-test/t/group_by.test: print() code coverage mysql-test/t/having.test: print() code coverage mysql-test/t/insert_update.test: print() code coverage mysql-test/t/null.test: print() code coverage mysql-test/t/olap.test: print() code coverage mysql-test/t/query_cache.test: print() code coverage mysql-test/t/row.test: print() code coverage mysql-test/t/rpl000001.test: print() code coverage mysql-test/t/rpl_get_lock.test: print() code coverage mysql-test/t/rpl_master_pos_wait.test: print() code coverage mysql-test/t/select.test: print() code coverage mysql-test/t/type_blob.test: print() code coverage mysql-test/t/varbinary.test: print() code coverage mysql-test/t/variables.test: print() code coverage sql/item.cc: added string length for more speed layout fix fixed string printability sql/item.h: added string length for more speed sql/item_cmpfunc.cc: added string length for more speed sql/item_cmpfunc.h: fixed printability sql/item_create.cc: fixed printability sql/item_func.cc: fixed printability added string length for more speed sql/item_func.h: fixed printability sql/item_strfunc.cc: fixed printability added string length for more speed sql/item_strfunc.h: fixed printability sql/item_subselect.cc: added string length for more speed sql/item_sum.cc: added string length for more speed sql/item_timefunc.cc: added string length for more speed sql/item_timefunc.h: fixed printability sql/item_uniq.h: added string length for more speed sql/key.cc: added string length for more speed sql/sql_lex.cc: added string length for more speed sql/sql_parse.cc: after merge fix sql/sql_repl.cc: string changed with character for more speed sql/sql_select.cc: added string length for more speed sql/sql_show.cc: added string length for more speed
172 lines
5.1 KiB
Text
172 lines
5.1 KiB
Text
drop table if exists t1;
|
|
select (1,2,3) IN ((3,2,3), (1,2,3), (1,3,3));
|
|
(1,2,3) IN ((3,2,3), (1,2,3), (1,3,3))
|
|
1
|
|
select row(10,2,3) IN (row(3,2,3), row(1,2,3), row(1,3,3));
|
|
row(10,2,3) IN (row(3,2,3), row(1,2,3), row(1,3,3))
|
|
0
|
|
select row(1,2,3) IN (row(3,NULL,3), row(1,2,3), row(1,3,3));
|
|
row(1,2,3) IN (row(3,NULL,3), row(1,2,3), row(1,3,3))
|
|
1
|
|
select row(10,2,3) IN (row(3,NULL,3), row(1,2,3), row(1,3,3));
|
|
row(10,2,3) IN (row(3,NULL,3), row(1,2,3), row(1,3,3))
|
|
0
|
|
select row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'));
|
|
row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'))
|
|
1
|
|
select row('a',0,3) IN (row(3,2,3), row('a','0','3'), row(1,3,3));
|
|
row('a',0,3) IN (row(3,2,3), row('a','0','3'), row(1,3,3))
|
|
1
|
|
select row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3));
|
|
row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3))
|
|
1
|
|
select row('a',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3));
|
|
row('a',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3))
|
|
1
|
|
select row('b',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3));
|
|
row('b',1.5,3) IN (row(3,NULL,3), row('a',1.5,3), row(1,3,3))
|
|
0
|
|
select row('b',1.5,3) IN (row('b',NULL,3), row('a',1.5,3), row(1,3,3));
|
|
row('b',1.5,3) IN (row('b',NULL,3), row('a',1.5,3), row(1,3,3))
|
|
NULL
|
|
select row('b',1.5,3) IN (row('b',NULL,4), row('a',1.5,3), row(1,3,3));
|
|
row('b',1.5,3) IN (row('b',NULL,4), row('a',1.5,3), row(1,3,3))
|
|
0
|
|
select (1,2,(3,4)) IN ((3,2,(3,4)), (1,2,(3,4)));
|
|
(1,2,(3,4)) IN ((3,2,(3,4)), (1,2,(3,4)))
|
|
1
|
|
select row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,4));
|
|
ERROR 21000: Operand should contain 2 column(s)
|
|
select row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,row(3,NULL)));
|
|
row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,row(3,NULL)))
|
|
NULL
|
|
explain extended select row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,row(3,NULL)));
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
|
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL No tables used
|
|
Warnings:
|
|
Note 1003 select high_priority ((1,2,(3,4)) in ((3,2,(3,4)),(1,2,(3,NULL)))) AS `row(1,2,row(3,4)) IN (row(3,2,row(3,4)), row(1,2,row(3,NULL)))`
|
|
SELECT (1,2,3)=(0,NULL,3);
|
|
(1,2,3)=(0,NULL,3)
|
|
0
|
|
SELECT (1,2,3)=(1,NULL,3);
|
|
(1,2,3)=(1,NULL,3)
|
|
NULL
|
|
SELECT (1,2,3)=(1,NULL,0);
|
|
(1,2,3)=(1,NULL,0)
|
|
NULL
|
|
SELECT ROW(1,2,3)=ROW(1,2,3);
|
|
ROW(1,2,3)=ROW(1,2,3)
|
|
1
|
|
SELECT ROW(2,2,3)=ROW(1+1,2,3);
|
|
ROW(2,2,3)=ROW(1+1,2,3)
|
|
1
|
|
SELECT ROW(1,2,3)=ROW(1+1,2,3);
|
|
ROW(1,2,3)=ROW(1+1,2,3)
|
|
0
|
|
SELECT ROW(1,2,3)<ROW(1+1,2,3);
|
|
ROW(1,2,3)<ROW(1+1,2,3)
|
|
1
|
|
SELECT ROW(1,2,3)>ROW(1+1,2,3);
|
|
ROW(1,2,3)>ROW(1+1,2,3)
|
|
0
|
|
SELECT ROW(1,2,3)<=ROW(1+1,2,3);
|
|
ROW(1,2,3)<=ROW(1+1,2,3)
|
|
1
|
|
SELECT ROW(1,2,3)>=ROW(1+1,2,3);
|
|
ROW(1,2,3)>=ROW(1+1,2,3)
|
|
0
|
|
SELECT ROW(1,2,3)<>ROW(1+1,2,3);
|
|
ROW(1,2,3)<>ROW(1+1,2,3)
|
|
1
|
|
SELECT ROW(NULL,2,3)=ROW(NULL,2,3);
|
|
ROW(NULL,2,3)=ROW(NULL,2,3)
|
|
NULL
|
|
SELECT ROW(NULL,2,3)<=>ROW(NULL,2,3);
|
|
ROW(NULL,2,3)<=>ROW(NULL,2,3)
|
|
1
|
|
SELECT ROW(1,2,ROW(3,4,5))=ROW(1,2,ROW(3,4,5));
|
|
ROW(1,2,ROW(3,4,5))=ROW(1,2,ROW(3,4,5))
|
|
1
|
|
SELECT ROW('test',2,3.33)=ROW('test',2,3.33);
|
|
ROW('test',2,3.33)=ROW('test',2,3.33)
|
|
1
|
|
SELECT ROW('test',2,3.33)=ROW('test',2,3.33,4);
|
|
ERROR 21000: Operand should contain 3 column(s)
|
|
SELECT ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,33));
|
|
ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,33))
|
|
1
|
|
SELECT ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,3));
|
|
ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,3))
|
|
0
|
|
SELECT ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,NULL));
|
|
ROW('test',2,ROW(3,33))=ROW('test',2,ROW(3,NULL))
|
|
NULL
|
|
SELECT ROW('test',2,ROW(3,33))=ROW('test',2,4);
|
|
ERROR 21000: Operand should contain 2 column(s)
|
|
create table t1 ( a int, b int, c int);
|
|
insert into t1 values (1,2,3), (2,3,1), (3,2,1), (1,2,NULL);
|
|
select * from t1 where ROW(1,2,3)=ROW(a,b,c);
|
|
a b c
|
|
1 2 3
|
|
select * from t1 where ROW(0,2,3)=ROW(a,b,c);
|
|
a b c
|
|
select * from t1 where ROW(1,2,3)<ROW(a,b,c);
|
|
a b c
|
|
2 3 1
|
|
3 2 1
|
|
select ROW(a,2,3) IN(row(1,b,c), row(2,3,1)) from t1;
|
|
ROW(a,2,3) IN(row(1,b,c), row(2,3,1))
|
|
1
|
|
0
|
|
0
|
|
NULL
|
|
select ROW(c,2,3) IN(row(1,b,a), row(2,3,1)) from t1;
|
|
ROW(c,2,3) IN(row(1,b,a), row(2,3,1))
|
|
0
|
|
0
|
|
1
|
|
NULL
|
|
select ROW(a,b,c) IN(row(1,2,3), row(3,2,1)) from t1;
|
|
ROW(a,b,c) IN(row(1,2,3), row(3,2,1))
|
|
1
|
|
0
|
|
1
|
|
NULL
|
|
select ROW(1,2,3) IN(row(a,b,c), row(1,2,3)) from t1;
|
|
ROW(1,2,3) IN(row(a,b,c), row(1,2,3))
|
|
1
|
|
1
|
|
1
|
|
1
|
|
drop table t1;
|
|
select ROW(1,1);
|
|
ERROR 21000: Operand should contain 1 column(s)
|
|
create table t1 (i int);
|
|
select 1 from t1 where ROW(1,1);
|
|
ERROR 21000: Operand should contain 1 column(s)
|
|
select count(*) from t1 order by ROW(1,1);
|
|
ERROR 21000: Operand should contain 1 column(s)
|
|
select count(*) from t1 having (1,1) order by i;
|
|
ERROR 21000: Operand should contain 1 column(s)
|
|
drop table t1;
|
|
create table t1 (a int, b int);
|
|
insert into t1 values (1, 4);
|
|
insert into t1 values (10, 40);
|
|
insert into t1 values (1, 4);
|
|
insert into t1 values (10, 43);
|
|
insert into t1 values (1, 4);
|
|
insert into t1 values (10, 41);
|
|
insert into t1 values (1, 4);
|
|
insert into t1 values (10, 43);
|
|
insert into t1 values (1, 4);
|
|
select a, MAX(b), (1, MAX(b)) = (1, 4) from t1 group by a;
|
|
a MAX(b) (1, MAX(b)) = (1, 4)
|
|
1 4 1
|
|
10 43 0
|
|
drop table t1;
|
|
SELECT ROW(2,10) <=> ROW(3,4);
|
|
ROW(2,10) <=> ROW(3,4)
|
|
0
|
|
SELECT ROW(NULL,10) <=> ROW(3,NULL);
|
|
ROW(NULL,10) <=> ROW(3,NULL)
|
|
0
|