mariadb/mysql-test/suite/engines/funcs/r/tc_column_length.result
Omer BarNir c92b9b7315 Test suites for engine testing, moved from test-extra so will be available
for general use.


mysql-test/Makefile.am:
  Adding directories of additional test suites
mysql-test/mysql-stress-test.pl:
  Adding check for additional errors checking during test run
2010-03-17 23:42:07 -07:00

265 lines
5.2 KiB
Text

DROP TABLE IF EXISTS t5;
CREATE TABLE t5(c1 BIT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` bit(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 TINYINT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` tinyint(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 SMALLINT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` smallint(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 MEDIUMINT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` mediumint(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 INT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` int(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 INTEGER(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` int(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 BIGINT(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` bigint(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 CHAR(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` char(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 VARCHAR(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` varchar(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 BINARY(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` binary(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 VARBINARY(1) NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` varbinary(1) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 BIT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` bit(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 TINYINT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` tinyint(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 SMALLINT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` smallint(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 MEDIUMINT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` mediumint(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 INT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` int(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 INTEGER(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` int(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 BIGINT(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` bigint(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 CHAR(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` char(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 VARCHAR(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` varchar(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 BINARY(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` binary(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test
CREATE TABLE t5(c1 VARBINARY(1) NOT NULL);
SHOW TABLES;
Tables_in_test
t5
SHOW CREATE TABLE t5;
Table Create Table
t5 CREATE TABLE `t5` (
`c1` varbinary(1) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t5;
SHOW TABLES;
Tables_in_test