~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/tc_column_key_length.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t9;
 
2
CREATE TABLE t9(c1 CHAR(10) NOT NULL KEY);
 
3
SHOW TABLES;
 
4
Tables_in_test
 
5
t9
 
6
SHOW CREATE TABLE t9;
 
7
Table   Create Table
 
8
t9      CREATE TABLE `t9` (
 
9
  `c1` char(10) NOT NULL,
 
10
  PRIMARY KEY (`c1`)
 
11
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
12
DROP TABLE t9;
 
13
SHOW TABLES;
 
14
Tables_in_test
 
15
CREATE TABLE t9(c1 VARCHAR(10) NOT NULL KEY);
 
16
SHOW TABLES;
 
17
Tables_in_test
 
18
t9
 
19
SHOW CREATE TABLE t9;
 
20
Table   Create Table
 
21
t9      CREATE TABLE `t9` (
 
22
  `c1` varchar(10) NOT NULL,
 
23
  PRIMARY KEY (`c1`)
 
24
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
25
DROP TABLE t9;
 
26
SHOW TABLES;
 
27
Tables_in_test
 
28
CREATE TABLE t9(c1 BINARY(10) NOT NULL KEY);
 
29
SHOW TABLES;
 
30
Tables_in_test
 
31
t9
 
32
SHOW CREATE TABLE t9;
 
33
Table   Create Table
 
34
t9      CREATE TABLE `t9` (
 
35
  `c1` binary(10) NOT NULL,
 
36
  PRIMARY KEY (`c1`)
 
37
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
38
DROP TABLE t9;
 
39
SHOW TABLES;
 
40
Tables_in_test
 
41
CREATE TABLE t9(c1 VARBINARY(10) NOT NULL KEY);
 
42
SHOW TABLES;
 
43
Tables_in_test
 
44
t9
 
45
SHOW CREATE TABLE t9;
 
46
Table   Create Table
 
47
t9      CREATE TABLE `t9` (
 
48
  `c1` varbinary(10) NOT NULL,
 
49
  PRIMARY KEY (`c1`)
 
50
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
51
DROP TABLE t9;
 
52
SHOW TABLES;
 
53
Tables_in_test