~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/varbinary.result

  • Committer: Monty Taylor
  • Date: 2009-02-17 10:00:38 UTC
  • mto: This revision was merged to the branch mainline in revision 888.
  • Revision ID: mordred@inaugust.com-20090217100038-ywlg7whtxdl9od5u
Update tests based on how Toru's latest patch changes create table statements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
show create table table_28127_a;
43
43
Table   Create Table
44
44
table_28127_a   CREATE TABLE `table_28127_a` (
45
 
  `0b02` int
 
45
  `0b02` int DEFAULT NULL
46
46
) ENGINE=InnoDB
47
47
create table table_28127_b(0b2 int);
48
48
show create table table_28127_b;
49
49
Table   Create Table
50
50
table_28127_b   CREATE TABLE `table_28127_b` (
51
 
  `0b2` int
 
51
  `0b2` int DEFAULT NULL
52
52
) ENGINE=InnoDB
53
53
drop table table_28127_a;
54
54
drop table table_28127_b;