~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/varbinary.result

  • Committer: Brian Aker
  • Date: 2009-08-17 01:44:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817014423-jxi2qonsumm8mndf
Remove SQL level reference for DELAY (just now done correctly by default in
engine).

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;
39
43
show create table table_28127_a;
40
44
Table   Create Table
41
45
table_28127_a   CREATE TABLE `table_28127_a` (
42
 
  `0b02` INT DEFAULT NULL
43
 
) ENGINE=DEFAULT COLLATE = utf8_general_ci
 
46
  `0b02` int DEFAULT NULL
 
47
) ENGINE=DEFAULT
44
48
create table table_28127_b(0b2 int);
45
49
show create table table_28127_b;
46
50
Table   Create Table
47
51
table_28127_b   CREATE TABLE `table_28127_b` (
48
 
  `0b2` INT DEFAULT NULL
49
 
) ENGINE=DEFAULT COLLATE = utf8_general_ci
 
52
  `0b2` int DEFAULT NULL
 
53
) ENGINE=DEFAULT
50
54
drop table table_28127_a;
51
55
drop table table_28127_b;