1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
Files
mariadb/mysql-test/suite/engines/funcs/r/tc_column_length_zero.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

50 lines
1.1 KiB
Plaintext

DROP TABLE IF EXISTS t6;
CREATE TABLE t6(c1 CHAR(0) NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` char(0) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 VARCHAR(0) NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` varchar(0) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 CHAR(0) NOT NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` char(0) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 VARCHAR(0) NOT NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` varchar(0) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
DROP TABLE t6;
SHOW TABLES;
Tables_in_test