mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
87c97b4785
The test itself is not faulty. The testcase timeout problem happens if this IMHO mid size resource (space in vardir, virtual memory, amount of disk I/O) consuming test meets a weak (excessive disk I/O caused by parallel applications or paging) testing box. The modifications: - Move the most time and disk I/O consuming subtest for Bug 1820 into its own script (multi_update2) This will reduce the likelihood that we exceed the testcase timeout. - Replace error numbers with error names - Minor improvements of the formatting -
43 lines
1 KiB
Text
43 lines
1 KiB
Text
#
|
|
# Test of update statement that uses many tables.
|
|
#
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1,t2;
|
|
--enable_warnings
|
|
|
|
#
|
|
# Bug#1820 Rows not deleted from second table on multi-table delete
|
|
#
|
|
|
|
CREATE TABLE t1 ( a INT NOT NULL, b INT NOT NULL) ;
|
|
--echo # The protocolling of many inserts into t1 is suppressed.
|
|
--disable_query_log
|
|
INSERT INTO t1 VALUES (1,1),(2,2),(3,3),(4,4);
|
|
let $1=19;
|
|
set @d=4;
|
|
while ($1)
|
|
{
|
|
eval INSERT INTO t1 SELECT a+@d,b+@d FROM t1;
|
|
eval SET @d=@d*2;
|
|
dec $1;
|
|
}
|
|
|
|
--enable_query_log
|
|
ALTER TABLE t1 ADD INDEX i1(a);
|
|
DELETE FROM t1 WHERE a > 2000000;
|
|
CREATE TABLE t2 LIKE t1;
|
|
INSERT INTO t2 SELECT * FROM t1;
|
|
|
|
SELECT 't2 rows before small delete', COUNT(*) FROM t1;
|
|
DELETE t1,t2 FROM t1,t2 WHERE t1.b=t2.a AND t1.a < 2;
|
|
SELECT 't2 rows after small delete', COUNT(*) FROM t2;
|
|
SELECT 't1 rows after small delete', COUNT(*) FROM t1;
|
|
|
|
## Try deleting many rows
|
|
|
|
DELETE t1,t2 FROM t1,t2 WHERE t1.b=t2.a AND t1.a < 100*1000;
|
|
SELECT 't2 rows after big delete', COUNT(*) FROM t2;
|
|
SELECT 't1 rows after big delete', COUNT(*) FROM t1;
|
|
|
|
DROP TABLE t1,t2;
|