~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/show_create_table_varbinary.result

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
show create table t1;
3
3
Table   Create Table
4
4
t1      CREATE TABLE `t1` (
5
 
  `a` varbinary(4) DEFAULT ''
 
5
  `a` VARBINARY(4) DEFAULT ''
6
6
) ENGINE=InnoDB COLLATE = utf8_general_ci
7
7
drop table t1;
8
8
create table t2 (a varbinary(4) default 'foo');
9
9
show create table t2;
10
10
Table   Create Table
11
11
t2      CREATE TABLE `t2` (
12
 
  `a` varbinary(4) DEFAULT 0x666F6F
 
12
  `a` VARBINARY(4) DEFAULT 0x666F6F
13
13
) ENGINE=InnoDB COLLATE = utf8_general_ci
14
14
drop table t2;
15
15
create table t3 (a varbinary(4) default 0x01020304);
16
16
show create table t3;
17
17
Table   Create Table
18
18
t3      CREATE TABLE `t3` (
19
 
  `a` varbinary(4) DEFAULT 0x01020304
 
19
  `a` VARBINARY(4) DEFAULT 0x01020304
20
20
) ENGINE=InnoDB COLLATE = utf8_general_ci
21
21
drop table t3;
22
22
create table t4 (a varbinary(4) default '\n');
23
23
show create table t4;
24
24
Table   Create Table
25
25
t4      CREATE TABLE `t4` (
26
 
  `a` varbinary(4) DEFAULT 0x0A
 
26
  `a` VARBINARY(4) DEFAULT 0x0A
27
27
) ENGINE=InnoDB COLLATE = utf8_general_ci
28
28
drop table t4;
29
29
CREATE TABLE `t4` (
32
32
SHOW CREATE TABLE t4;
33
33
Table   Create Table
34
34
t4      CREATE TABLE `t4` (
35
 
  `a` varbinary(4) DEFAULT 0x0A
 
35
  `a` VARBINARY(4) DEFAULT 0x0A
36
36
) ENGINE=InnoDB COLLATE = utf8_general_ci
37
37
DROP TABLE t4;