~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/varbinary.result

  • Committer: Brian Aker
  • Date: 2009-03-05 08:26:07 UTC
  • mfrom: (910.2.11 mordred-noatomics)
  • Revision ID: brian@tangent.org-20090305082607-30deookk6sdycdeb
Merge from Monty.

Show diffs side-by-side

added added

removed removed

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