mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
func_gconcat.result, func_gconcat.test:
Remove duplicate test case for bug#14169 mysql-test/t/func_gconcat.test: Remove duplicate test case for bug#14169 mysql-test/r/func_gconcat.result: Remove duplicate test case for bug#14169
This commit is contained in:
@ -611,16 +611,6 @@ count(distinct (f1+1))
|
|||||||
1
|
1
|
||||||
3
|
3
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (f1 int unsigned, f2 varchar(255));
|
|
||||||
insert into t1 values (1,repeat('a',255)),(2,repeat('b',255));
|
|
||||||
select f2,group_concat(f1) from t1 group by f2;
|
|
||||||
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
|
||||||
def test t1 t1 f2 f2 253 255 255 Y 0 0 8
|
|
||||||
def group_concat(f1) 253 400 1 Y 128 0 63
|
|
||||||
f2 group_concat(f1)
|
|
||||||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 1
|
|
||||||
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 2
|
|
||||||
drop table t1;
|
|
||||||
set names latin1;
|
set names latin1;
|
||||||
create table t1 (a char, b char);
|
create table t1 (a char, b char);
|
||||||
insert into t1 values ('a', 'a'), ('a', 'b'), ('b', 'a'), ('b', 'b');
|
insert into t1 values ('a', 'a'), ('a', 'b'), ('b', 'a'), ('b', 'b');
|
||||||
|
@ -398,17 +398,6 @@ select f1, group_concat(f1+1) from t1 group by f1 with rollup;
|
|||||||
select count(distinct (f1+1)) from t1 group by f1 with rollup;
|
select count(distinct (f1+1)) from t1 group by f1 with rollup;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
#
|
|
||||||
# Bug#14169 type of group_concat() result changed to blob if tmp_table was used
|
|
||||||
#
|
|
||||||
create table t1 (f1 int unsigned, f2 varchar(255));
|
|
||||||
insert into t1 values (1,repeat('a',255)),(2,repeat('b',255));
|
|
||||||
--enable_metadata
|
|
||||||
select f2,group_concat(f1) from t1 group by f2;
|
|
||||||
# select f2,group_concat(f1) from t1 group by f2 order by 2;
|
|
||||||
--disable_metadata
|
|
||||||
drop table t1;
|
|
||||||
|
|
||||||
# End of 4.1 tests
|
# End of 4.1 tests
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user