mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 10.11 into 11.0
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
# Test 3) Query some information_shema tables that are dependent upon
|
||||
# the page size.
|
||||
SELECT t.name table_name, t.n_cols, t.flag table_flags,
|
||||
@@ -36,13 +36,13 @@
|
||||
@@ -36,7 +36,7 @@
|
||||
table_name n_cols table_flags index_name root_page type n_fields merge_threshold
|
||||
test/t1 5 0 PRIMARY 3 3 1 50
|
||||
test/t2 5 1 PRIMARY 3 3 1 50
|
||||
@@ -16,6 +16,8 @@
|
||||
test/t4 5 33 PRIMARY 3 3 1 50
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
@@ -45,7 +45,7 @@
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t1 DEFAULT DEFAULT MYSQLD_DATADIR/test/t1.ibd
|
||||
test/t2 DEFAULT DEFAULT MYSQLD_DATADIR/test/t2.ibd
|
||||
-test/t3 DEFAULT 8192 MYSQLD_DATADIR/test/t3.ibd
|
||||
@@ -23,7 +25,7 @@
|
||||
test/t4 DEFAULT DEFAULT MYSQLD_DATADIR/test/t4.ibd
|
||||
innodb_temporary DEFAULT DEFAULT MYSQLD_DATADIR/ibtmp1
|
||||
DROP TABLE t1, t2, t3, t4;
|
||||
@@ -52,141 +52,90 @@
|
||||
@@ -55,141 +55,90 @@
|
||||
SET SESSION innodb_strict_mode = ON;
|
||||
CREATE TABLE t1 (
|
||||
c01 char(200), c02 char(200), c03 char(200), c04 char(200), c05 char(200),
|
||||
@@ -211,7 +213,7 @@
|
||||
ALTER TABLE t1 KEY_BLOCK_SIZE=4;
|
||||
SHOW WARNINGS;
|
||||
Level Code Message
|
||||
@@ -218,15 +167,21 @@
|
||||
@@ -221,15 +170,21 @@
|
||||
DROP TABLE t1;
|
||||
SET SESSION innodb_strict_mode = OFF;
|
||||
CREATE TABLE t1 (i int) ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=16;
|
||||
@@ -233,7 +235,7 @@
|
||||
SELECT table_name, row_format, create_options
|
||||
FROM information_schema.tables WHERE table_name = 't1';
|
||||
table_name row_format create_options
|
||||
@@ -272,6 +227,7 @@
|
||||
@@ -275,6 +230,7 @@
|
||||
ERROR HY000: Can't create table `test`.`t4` (errno: 140 "Wrong create options")
|
||||
SHOW WARNINGS;
|
||||
Level Code Message
|
||||
@@ -241,7 +243,7 @@
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||
Error 1005 Can't create table `test`.`t4` (errno: 140 "Wrong create options")
|
||||
Warning 1030 Got error 140 "Wrong create options" from storage engine InnoDB
|
||||
@@ -279,107 +235,13 @@
|
||||
@@ -282,107 +238,13 @@
|
||||
ERROR HY000: Can't create table `test`.`t5` (errno: 140 "Wrong create options")
|
||||
SHOW WARNINGS;
|
||||
Level Code Message
|
||||
@@ -350,7 +352,7 @@
|
||||
# Test 8) Test creating a table that could lead to undo log overflow.
|
||||
CREATE TABLE t1(a blob,b blob,c blob,d blob,e blob,f blob,g blob,
|
||||
h blob,i blob,j blob,k blob,l blob,m blob,n blob,
|
||||
@@ -394,10 +256,6 @@
|
||||
@@ -397,10 +259,6 @@
|
||||
UPDATE t1 SET a=@b,b=@b,c=@b,d=@b,e=@b,f=@b,g=@b,h=@b,i=@b,j=@b,
|
||||
k=@b,l=@b,m=@b,n=@b,o=@b,p=@b,q=@b,r=@b,s=@b,t=@b,u=@b;
|
||||
CREATE INDEX t1a ON t1 (a(767));
|
||||
@@ -361,7 +363,7 @@
|
||||
UPDATE t1 SET a=@c,b=@c,c=@c,d=@c,e=@c,f=@c,g=@c,h=@c,i=@c,j=@c,
|
||||
k=@c,l=@c,m=@c,n=@c,o=@c,p=@c,q=@c,r=@c,s=@c,t=@c,u=@c;
|
||||
CREATE INDEX t1f ON t1 (f(767));
|
||||
@@ -412,37 +270,15 @@
|
||||
@@ -415,37 +273,15 @@
|
||||
COMMIT;
|
||||
CREATE INDEX t1g ON t1 (g(767));
|
||||
UPDATE t1 SET g=@e;
|
||||
@@ -403,7 +405,7 @@
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
@@ -468,28 +304,12 @@
|
||||
@@ -471,28 +307,12 @@
|
||||
`t` blob DEFAULT NULL,
|
||||
`u` blob DEFAULT NULL,
|
||||
KEY `t1a` (`a`(767)),
|
||||
@@ -434,7 +436,7 @@
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=DYNAMIC
|
||||
DROP TABLE t1;
|
||||
# Bug#12547647 UPDATE LOGGING COULD EXCEED LOG PAGE SIZE
|
||||
@@ -574,27 +394,25 @@
|
||||
@@ -577,27 +397,25 @@
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1(
|
||||
c text NOT NULL, d text NOT NULL,
|
||||
|
@@ -7,7 +7,7 @@
|
||||
# Test 3) Query some information_shema tables that are dependent upon
|
||||
# the page size.
|
||||
SELECT t.name table_name, t.n_cols, t.flag table_flags,
|
||||
@@ -36,13 +36,13 @@
|
||||
@@ -36,7 +36,7 @@
|
||||
table_name n_cols table_flags index_name root_page type n_fields merge_threshold
|
||||
test/t1 5 0 PRIMARY 3 3 1 50
|
||||
test/t2 5 1 PRIMARY 3 3 1 50
|
||||
@@ -16,6 +16,8 @@
|
||||
test/t4 5 33 PRIMARY 3 3 1 50
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
@@ -45,7 +45,7 @@
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t1 DEFAULT DEFAULT MYSQLD_DATADIR/test/t1.ibd
|
||||
test/t2 DEFAULT DEFAULT MYSQLD_DATADIR/test/t2.ibd
|
||||
-test/t3 DEFAULT 8192 MYSQLD_DATADIR/test/t3.ibd
|
||||
@@ -23,7 +25,7 @@
|
||||
test/t4 DEFAULT DEFAULT MYSQLD_DATADIR/test/t4.ibd
|
||||
innodb_temporary DEFAULT DEFAULT MYSQLD_DATADIR/ibtmp1
|
||||
DROP TABLE t1, t2, t3, t4;
|
||||
@@ -54,133 +54,97 @@
|
||||
@@ -57,133 +57,97 @@
|
||||
c01 char(200), c02 char(200), c03 char(200), c04 char(200), c05 char(200),
|
||||
c06 char(200), c07 char(200), c08 char(200), c09 char(200), c10 char(200),
|
||||
c11 char(200), c12 char(200), c13 char(200), c14 char(200), c15 char(200),
|
||||
@@ -199,7 +201,7 @@
|
||||
SHOW WARNINGS;
|
||||
Level Code Message
|
||||
SELECT table_name, row_format, create_options
|
||||
@@ -218,8 +182,11 @@
|
||||
@@ -221,8 +185,11 @@
|
||||
DROP TABLE t1;
|
||||
SET SESSION innodb_strict_mode = OFF;
|
||||
CREATE TABLE t1 (i int) ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=16;
|
||||
@@ -211,7 +213,7 @@
|
||||
SELECT table_name, row_format, create_options
|
||||
FROM information_schema.tables WHERE table_name = 't1';
|
||||
table_name row_format create_options
|
||||
@@ -279,107 +246,13 @@
|
||||
@@ -282,107 +249,13 @@
|
||||
ERROR HY000: Can't create table `test`.`t5` (errno: 140 "Wrong create options")
|
||||
SHOW WARNINGS;
|
||||
Level Code Message
|
||||
@@ -320,7 +322,7 @@
|
||||
# Test 8) Test creating a table that could lead to undo log overflow.
|
||||
CREATE TABLE t1(a blob,b blob,c blob,d blob,e blob,f blob,g blob,
|
||||
h blob,i blob,j blob,k blob,l blob,m blob,n blob,
|
||||
@@ -394,10 +267,6 @@
|
||||
@@ -397,10 +270,6 @@
|
||||
UPDATE t1 SET a=@b,b=@b,c=@b,d=@b,e=@b,f=@b,g=@b,h=@b,i=@b,j=@b,
|
||||
k=@b,l=@b,m=@b,n=@b,o=@b,p=@b,q=@b,r=@b,s=@b,t=@b,u=@b;
|
||||
CREATE INDEX t1a ON t1 (a(767));
|
||||
@@ -331,7 +333,7 @@
|
||||
UPDATE t1 SET a=@c,b=@c,c=@c,d=@c,e=@c,f=@c,g=@c,h=@c,i=@c,j=@c,
|
||||
k=@c,l=@c,m=@c,n=@c,o=@c,p=@c,q=@c,r=@c,s=@c,t=@c,u=@c;
|
||||
CREATE INDEX t1f ON t1 (f(767));
|
||||
@@ -412,30 +281,6 @@
|
||||
@@ -415,30 +284,6 @@
|
||||
COMMIT;
|
||||
CREATE INDEX t1g ON t1 (g(767));
|
||||
UPDATE t1 SET g=@e;
|
||||
@@ -362,7 +364,7 @@
|
||||
CREATE INDEX t1t ON t1 (t(767));
|
||||
BEGIN;
|
||||
UPDATE t1 SET t=@e;
|
||||
@@ -468,24 +313,8 @@
|
||||
@@ -471,24 +316,8 @@
|
||||
`t` blob DEFAULT NULL,
|
||||
`u` blob DEFAULT NULL,
|
||||
KEY `t1a` (`a`(767)),
|
||||
@@ -387,7 +389,7 @@
|
||||
KEY `t1t` (`t`(767)),
|
||||
KEY `t1u` (`u`(767)),
|
||||
KEY `t1ut` (`u`(767),`t`(767)),
|
||||
@@ -577,14 +406,14 @@
|
||||
@@ -580,14 +409,14 @@
|
||||
PRIMARY KEY (c(767),d(767)))
|
||||
ENGINE=InnoDB ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=1 CHARSET=ASCII;
|
||||
Warnings:
|
||||
@@ -404,7 +406,7 @@
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1(
|
||||
c text NOT NULL, d text NOT NULL,
|
||||
@@ -594,7 +423,7 @@
|
||||
@@ -597,7 +426,7 @@
|
||||
CREATE TABLE t1(c text, PRIMARY KEY (c(440)))
|
||||
ENGINE=InnoDB ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=1 CHARSET=ASCII;
|
||||
Warnings:
|
||||
|
@@ -40,6 +40,9 @@ test/t3 5 41 PRIMARY 3 3 1 50
|
||||
test/t4 5 33 PRIMARY 3 3 1 50
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t1 DEFAULT DEFAULT MYSQLD_DATADIR/test/t1.ibd
|
||||
test/t2 DEFAULT DEFAULT MYSQLD_DATADIR/test/t2.ibd
|
||||
test/t3 DEFAULT 8192 MYSQLD_DATADIR/test/t3.ibd
|
||||
|
@@ -210,6 +210,9 @@ test/t7_restart#p#p1#sp#s2 test/t7_restart#p#p1#sp#s2 97 8 Dynamic 0
|
||||
test/t7_restart#p#p1#sp#s3 test/t7_restart#p#p1#sp#s3 97 8 Dynamic 0
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t1_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t1_restart.ibd
|
||||
test/t2_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t2_restart.ibd
|
||||
test/t3_restart DEFAULT 2048 MYSQLD_DATADIR/test/t3_restart.ibd
|
||||
@@ -393,6 +396,9 @@ test/t7_restart#p#p1#sp#s2 test/t7_restart#p#p1#sp#s2 97 8 Dynamic 0
|
||||
test/t7_restart#p#p1#sp#s3 test/t7_restart#p#p1#sp#s3 97 8 Dynamic 0
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t1_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t1_restart.ibd
|
||||
test/t2_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t2_restart.ibd
|
||||
test/t3_restart DEFAULT 2048 MYSQLD_DATADIR/test/t3_restart.ibd
|
||||
@@ -417,6 +423,9 @@ ALTER TABLE t6_restart TRUNCATE PARTITION p2;
|
||||
ALTER TABLE t7_restart TRUNCATE PARTITION p1;
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t4_restart.ibd
|
||||
test/t6_restart#p#p0 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t6_restart#p#p0.ibd
|
||||
test/t6_restart#p#p1 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t6_restart#p#p1.ibd
|
||||
@@ -520,6 +529,9 @@ t7_restart#p#p1#sp#s3.ibd
|
||||
# restart
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t4_restart.ibd
|
||||
test/t6_restart#p#p0 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t6_restart#p#p0.ibd
|
||||
test/t6_restart#p#p1 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t6_restart#p#p1.ibd
|
||||
@@ -622,6 +634,9 @@ RENAME TABLE t6_restart TO t66_restart;
|
||||
RENAME TABLE t7_restart TO t77_restart;
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t4_restart.ibd
|
||||
test/t66_restart#p#p0 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t66_restart#p#p0.ibd
|
||||
test/t66_restart#p#p1 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t66_restart#p#p1.ibd
|
||||
@@ -718,6 +733,9 @@ t77_restart#p#p1#sp#s3.ibd
|
||||
# restart
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t4_restart.ibd
|
||||
test/t66_restart#p#p0 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t66_restart#p#p0.ibd
|
||||
test/t66_restart#p#p1 DEFAULT 2048 MYSQL_TMP_DIR/alt_dir/test/t66_restart#p#p1.ibd
|
||||
@@ -853,6 +871,9 @@ t77_restart#p#p1#sp#s3.ibd
|
||||
# restart
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQL_TMP_DIR/new_dir/test/t4_restart.ibd
|
||||
test/t66_restart#p#p0 DEFAULT 2048 MYSQL_TMP_DIR/new_dir/test/t66_restart#p#p0.ibd
|
||||
test/t66_restart#p#p1 DEFAULT 2048 MYSQL_TMP_DIR/new_dir/test/t66_restart#p#p1.ibd
|
||||
@@ -992,6 +1013,9 @@ t77_restart.par
|
||||
# restart
|
||||
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
|
||||
Space_Name Page_Size Zip_Size Path
|
||||
innodb_undo001 DEFAULT DEFAULT MYSQLD_DATADIR//undo001
|
||||
innodb_undo002 DEFAULT DEFAULT MYSQLD_DATADIR//undo002
|
||||
innodb_undo003 DEFAULT DEFAULT MYSQLD_DATADIR//undo003
|
||||
test/t4_restart DEFAULT DEFAULT MYSQLD_DATADIR/test/t4_restart.ibd
|
||||
test/t66_restart#p#p0 DEFAULT 2048 MYSQLD_DATADIR/test/t66_restart#p#p0.ibd
|
||||
test/t66_restart#p#p1 DEFAULT 2048 MYSQLD_DATADIR/test/t66_restart#p#p1.ibd
|
||||
|
Reference in New Issue
Block a user