~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_weight_string.test

Merge of Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
drop table if exists t1;
3
3
--enable_warnings
4
4
 
5
 
set names latin1;
6
 
 
7
5
#
8
6
# If it's BLOB or BINARY or VARBINARY, then output = input.
9
7
#
74
72
# the result data type is BLOB.
75
73
#
76
74
create table t1 select weight_string('test') as w;
 
75
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
77
76
show create table t1;
78
77
drop table t1;
79
78
create table t1 select weight_string(repeat('t',66000)) as w;
 
79
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
80
80
show create table t1;
81
81
drop table t1;
82
82
 
94
94
# Check that collation derivation is copied from the argument
95
95
#
96
96
select coercibility(weight_string('test'));
97
 
select coercibility(weight_string('test' collate latin1_swedish_ci));
98
97
 
99
98
#
100
99
# Bug#33663 Character sets: weight_string function,