mariadb/mysql-test/suite/engines/funcs/r/tc_column_length.result
Alexander Barkov 36eba98817 MDEV-19123 Change default charset from latin1 to utf8mb4
Changing the default server character set from latin1 to utf8mb4.
2024-07-11 10:21:07 +04:00

265 lines
5.9 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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
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=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t5;
SHOW TABLES;
Tables_in_test