~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_weight_string.result

  • Committer: Vladimir Kolesnikov
  • Date: 2009-03-25 09:18:25 UTC
  • mto: (968.2.17 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: vladimir@primebase.org-20090325091825-gnw5opo5xtprd6k0
test generalizations

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
Table   Create Table
48
48
t1      CREATE TABLE `t1` (
49
49
  `w` varbinary(64) DEFAULT NULL
50
 
) ENGINE=InnoDB
 
50
) ENGINE=DEFAULT
51
51
drop table t1;
52
52
create table t1 select weight_string(repeat('t',66000)) as w;
53
53
show create table t1;
54
54
Table   Create Table
55
55
t1      CREATE TABLE `t1` (
56
56
  `w` blob
57
 
) ENGINE=InnoDB
 
57
) ENGINE=DEFAULT
58
58
drop table t1;
59
59
select weight_string(NULL);
60
60
weight_string(NULL)