~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/varbinary.result

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 00:53:34 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913005334-6wio2sbjugskfbm3
Added calls to the connection start/end dtrace probes.

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'
26
30
create table t1(a varbinary(255));
27
31
insert into t1 values("aaa   ");
28
32
select length(a) from t1;