mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
36eba98817
Changing the default server character set from latin1 to utf8mb4.
23 lines
540 B
Text
23 lines
540 B
Text
#
|
|
# MDEV-20306
|
|
# Assertion `!(end_of_data > info->scan.dir_end)' failed in
|
|
# _ma_scan_block_record upon converting table from S3 to Aria
|
|
# with encryption enabled
|
|
#
|
|
drop table if exists t1;
|
|
CREATE TABLE t1 (a INT) ENGINE=Aria;
|
|
INSERT INTO t1 VALUES (1);
|
|
ALTER TABLE t1 ENGINE=S3;
|
|
select * from t1;
|
|
a
|
|
1
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=S3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci PAGE_CHECKSUM=1
|
|
ALTER TABLE t1 ENGINE=Aria;
|
|
select * from t1;
|
|
a
|
|
1
|
|
DROP TABLE t1;
|