mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
MDEV-17005: Re-enable existing tests for non-debug server
This commit is contained in:
parent
60c790d6f4
commit
3bcda8ad5f
4 changed files with 45 additions and 43 deletions
|
@ -0,0 +1,18 @@
|
|||
CREATE TABLE t1 (a INT, b INT AS (a), KEY(b)) ENGINE=InnoDB;
|
||||
INSERT INTO t1 () VALUES (),();
|
||||
connect con1,localhost,root,,test;
|
||||
ALTER TABLE t1 ADD COLUMN x INT as (a), add key(x), ALGORITHM=COPY;
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_open";
|
||||
DELETE FROM t1;
|
||||
connection default;
|
||||
SET debug_sync= "now WAIT_FOR delete_open";
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
|
||||
SELECT a FROM t1;
|
||||
a
|
||||
NULL
|
||||
NULL
|
||||
connection con1;
|
||||
disconnect con1;
|
||||
connection default;
|
||||
SET debug_sync= "RESET";
|
||||
DROP TABLE t1;
|
|
@ -345,21 +345,3 @@ SELECT * FROM t1;
|
|||
a b c
|
||||
1 foo 1
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a INT, b INT AS (a), KEY(b)) ENGINE=InnoDB;
|
||||
INSERT INTO t1 () VALUES (),();
|
||||
connect con1,localhost,root,,test;
|
||||
ALTER TABLE t1 ADD COLUMN x INT as (a), add key(x), ALGORITHM=COPY;
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_open";
|
||||
DELETE FROM t1;
|
||||
connection default;
|
||||
SET debug_sync= "now WAIT_FOR delete_open";
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
|
||||
SELECT a FROM t1;
|
||||
a
|
||||
NULL
|
||||
NULL
|
||||
connection con1;
|
||||
disconnect con1;
|
||||
connection default;
|
||||
SET debug_sync= "RESET";
|
||||
DROP TABLE t1;
|
||||
|
|
27
mysql-test/suite/innodb/t/innodb-virtual-columns-debug.test
Normal file
27
mysql-test/suite/innodb/t/innodb-virtual-columns-debug.test
Normal file
|
@ -0,0 +1,27 @@
|
|||
--source include/have_innodb.inc
|
||||
--source include/have_debug.inc
|
||||
--source include/have_debug_sync.inc
|
||||
|
||||
#
|
||||
# MDEV-17005 ASAN heap-use-after-free in innobase_get_computed_value
|
||||
#
|
||||
CREATE TABLE t1 (a INT, b INT AS (a), KEY(b)) ENGINE=InnoDB;
|
||||
|
||||
INSERT INTO t1 () VALUES (),();
|
||||
--connect (con1,localhost,root,,test)
|
||||
ALTER TABLE t1 ADD COLUMN x INT as (a), add key(x), ALGORITHM=COPY;
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_open";
|
||||
--send
|
||||
DELETE FROM t1;
|
||||
--connection default
|
||||
SET debug_sync= "now WAIT_FOR delete_open";
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
|
||||
SELECT a FROM t1;
|
||||
--connection con1
|
||||
--reap
|
||||
|
||||
# Cleanup
|
||||
--disconnect con1
|
||||
--connection default
|
||||
SET debug_sync= "RESET";
|
||||
DROP TABLE t1;
|
|
@ -1,5 +1,4 @@
|
|||
--source include/have_innodb.inc
|
||||
--source include/have_debug_sync.inc
|
||||
|
||||
#
|
||||
# MDEV-7367: Updating a virtual column corrupts table which crashes server
|
||||
|
@ -318,27 +317,3 @@ INSERT INTO t1 (a,b) VALUES (1,'foo');
|
|||
ALTER TABLE t1 ADD FULLTEXT KEY(b);
|
||||
SELECT * FROM t1;
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# MDEV-17005 ASAN heap-use-after-free in innobase_get_computed_value
|
||||
#
|
||||
CREATE TABLE t1 (a INT, b INT AS (a), KEY(b)) ENGINE=InnoDB;
|
||||
|
||||
INSERT INTO t1 () VALUES (),();
|
||||
--connect (con1,localhost,root,,test)
|
||||
ALTER TABLE t1 ADD COLUMN x INT as (a), add key(x), ALGORITHM=COPY;
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_open";
|
||||
--send
|
||||
DELETE FROM t1;
|
||||
--connection default
|
||||
SET debug_sync= "now WAIT_FOR delete_open";
|
||||
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
|
||||
SELECT a FROM t1;
|
||||
--connection con1
|
||||
--reap
|
||||
|
||||
# Cleanup
|
||||
--disconnect con1
|
||||
--connection default
|
||||
SET debug_sync= "RESET";
|
||||
DROP TABLE t1;
|
||||
|
|
Loading…
Reference in a new issue