~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_weight_string.test

  • Committer: Monty Taylor
  • Date: 2009-03-31 18:02:35 UTC
  • mfrom: (942.3.1 drizzle)
  • mto: (971.1.10 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: mordred@inaugust.com-20090331180235-ubjt5enwgnke1inf
Merged from Vladimir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
# the result data type is BLOB.
73
73
#
74
74
create table t1 select weight_string('test') as w;
 
75
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
75
76
show create table t1;
76
77
drop table t1;
77
78
create table t1 select weight_string(repeat('t',66000)) as w;
 
79
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
78
80
show create table t1;
79
81
drop table t1;
80
82