~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/varbinary.result

  • Committer: Monty Taylor
  • Date: 2009-10-01 16:52:16 UTC
  • mto: This revision was merged to the branch mainline in revision 1159.
  • Revision ID: mordred@inaugust.com-20091001165216-1fd8ryzvh4ry43gd
When you modify the test file, some times it's helpful to modify the result file. :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
x       xx
24
24
1       2
25
25
drop table t1;
26
 
show create table t1;
27
 
ERROR 42S02: Table 'test.t1' doesn't exist
28
 
drop table t1;
29
 
ERROR 42S02: Unknown table 't1'
30
26
create table t1(a varbinary(255));
31
27
insert into t1 values("aaa   ");
32
28
select length(a) from t1;