~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t6;
 
2
CREATE TABLE t6(c1 ENUM('a','b','c') NULL);
 
3
SHOW TABLES;
 
4
Tables_in_test
 
5
t6
 
6
SHOW CREATE TABLE t6;
 
7
Table   Create Table
 
8
t6      CREATE TABLE `t6` (
 
9
  `c1` enum('a','b','c') DEFAULT NULL
 
10
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
11
DROP TABLE t6;
 
12
SHOW TABLES;
 
13
Tables_in_test
 
14
CREATE TABLE t6(c1 ENUM('a','b','c') NOT NULL);
 
15
SHOW TABLES;
 
16
Tables_in_test
 
17
t6
 
18
SHOW CREATE TABLE t6;
 
19
Table   Create Table
 
20
t6      CREATE TABLE `t6` (
 
21
  `c1` enum('a','b','c') NOT NULL
 
22
) ENGINE=ENGINE DEFAULT CHARSET=latin1
 
23
DROP TABLE t6;
 
24
SHOW TABLES;
 
25
Tables_in_test