mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
36eba98817
Changing the default server character set from latin1 to utf8mb4.
25 lines
975 B
Text
25 lines
975 B
Text
create table t1 (a int not null primary key, b int, c varchar(80), e enum('a','b')) engine=aria;
|
|
insert into t1 (a) values (1),(2),(3);
|
|
alter online table t1 page_checksum=1;
|
|
alter online table t1 page_checksum=0;
|
|
alter online table t1 drop column b, add b int;
|
|
alter online table t1 modify b bigint;
|
|
alter online table t1 modify e enum('c','a','b');
|
|
alter online table t1 modify c varchar(50);
|
|
alter online table t1 modify c varchar(100);
|
|
alter online table t1 add f int;
|
|
alter online table t1 engine=memory;
|
|
alter online table t1 checksum=1;
|
|
alter online table t1 add constraint check (b > 0);
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) NOT NULL,
|
|
`c` varchar(100) DEFAULT NULL,
|
|
`e` enum('c','a','b') DEFAULT NULL,
|
|
`b` bigint(20) DEFAULT NULL,
|
|
`f` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`a`),
|
|
CONSTRAINT `CONSTRAINT_1` CHECK (`b` > 0)
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci CHECKSUM=1
|
|
drop table t1;
|