Commit db9ddd89 authored by Alice Sherepa's avatar Alice Sherepa

innodb_wl5522

parent e6256fca
......@@ -4,7 +4,7 @@ SELECT index_name, stat_name, stat_value FROM mysql.innodb_index_stats WHERE tab
INSERT INTO autorecalc VALUES (1);
INSERT INTO autorecalc VALUES (2);
Timeout in wait_condition.inc for SELECT stat_value = 2 FROM mysql.innodb_index_stats WHERE table_name = 'autorecalc' AND index_name = 'PRIMARY' AND stat_name = 'n_diff_pfx01'
Id 3
Id 11
User root
Host localhost
db test
......@@ -17,7 +17,7 @@ SELECT n_rows, clustered_index_size FROM mysql.innodb_table_stats WHERE table_na
SELECT index_name, stat_name, stat_value FROM mysql.innodb_index_stats WHERE table_name = 'autorecalc';
DELETE FROM autorecalc;
Timeout in wait_condition.inc for SELECT stat_value = 0 FROM mysql.innodb_index_stats WHERE table_name = 'autorecalc' AND index_name = 'PRIMARY' AND stat_name = 'n_diff_pfx01'
Id 3
Id 11
User root
Host localhost
db test
......
......@@ -667,25 +667,6 @@ SELECT * FROM t1;
SHOW CREATE TABLE t1;
DROP TABLE t1;
CREATE TABLE t1 (c1 INT AUTO_INCREMENT PRIMARY KEY, c2 INT) ENGINE = MyISAM;
INSERT INTO t1 (c1) VALUES (NULL), (-290783232), (NULL);
SHOW CREATE TABLE t1;
SELECT * FROM t1;
ALTER TABLE t1 ENGINE = InnoDB;
SELECT * FROM t1;
SHOW CREATE TABLE t1;
REPLACE INTO t1 (c2 ) VALUES (0);
SELECT * FROM t1;
DROP TABLE t1;
#DOUBLE
CREATE TABLE t1 (c1 DOUBLE NOT NULL PRIMARY KEY AUTO_INCREMENT) ENGINE=InnoDB
AUTO_INCREMENT=10000000000000000000;
SHOW CREATE TABLE t1;
#--error 1467
INSERT INTO t1 VALUES ();
DROP TABLE t1;
--echo #
--echo # Bug #14049391 INNODB MISCALCULATES AUTO-INCREMENT
--echo # AFTER CHANGING AUTO_INCREMENT_INCREMEMENT
......
......@@ -15,7 +15,6 @@
# compressed table in tests are with sizes KEY_BLOCK_SIZE 1,2,4,8,16
# Table creatation fails if KEY_BLOCK_SIZE > innodb-page-size,so
# allow test to run only when innodb-page-size=16
--source include/have_innodb_16k.inc
# Test intentionally crashes the server, corrupted pages possible
call mtr.add_suppression("InnoDB: Page for tablespace .* ");
......
......@@ -5,7 +5,6 @@
# compressed table in tests are with sizes KEY_BLOCK_SIZE 1,2,4,8,16
# Table creatation fails if KEY_BLOCK_SIZE > innodb-page-size,so
# allow test to run only when innodb-page-size=16
--source include/have_innodb_16k.inc
--disable_warnings
DROP TABLE IF EXISTS t1;
......
......@@ -9,7 +9,6 @@
# Prerequisite : portability_wl5980_linux.zip
# should exist in "suite/innodb/t"
--source include/have_innodb_16k.inc
--source include/not_embedded.inc
--echo # Skip this test other platfoms and run only on Linux.
......@@ -18,6 +17,8 @@ if (`select convert(@@version_compile_os using latin1) IN ("Linux") = 0`)
skip Need Linux;
}
--source include/have_innodb.inc
--echo # Set the environmental variables
let MYSQL_BASEDIR= `select @@basedir`;
......@@ -101,10 +102,12 @@ EOF
--echo # partition tables will be stored in mixed (Upper & Lower) format on Linux,
--echo # but on Windows the partition table names are stored in lower case only.
-- exec echo "restart:--lower_case_table_names=1 --datadir=$MYSQL_TMP_DIR/mysqld.5980/data/ " > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
-- exec echo "restart:--lower_case_table_names=1 --innodb-sys-datafiles --innodb-sys-tablespaces --datadir=$MYSQL_TMP_DIR/mysqld.5980/data/ " > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
-- enable_reconnect
-- source include/wait_until_connected_again.inc
-- source include/have_partition.inc
--echo # Check the DB & tables with DML statements.
use test;
--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment