summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/t/maria3.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/maria/t/maria3.test')
-rw-r--r--mysql-test/suite/maria/t/maria3.test4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/t/maria3.test b/mysql-test/suite/maria/t/maria3.test
index 822beea4c5a..d44b0e6e6d9 100644
--- a/mysql-test/suite/maria/t/maria3.test
+++ b/mysql-test/suite/maria/t/maria3.test
@@ -172,11 +172,13 @@ create table t1 (a bigint auto_increment, primary key(a), b char(255), c varchar
let $1=1000;
--disable_query_log
--disable_warnings
+lock tables t1 write;
while ($1)
{
insert into t1 () values();
dec $1;
}
+unlock tables;
--enable_query_log
update t1 set b=repeat('a',100) where a between 1 and 100;
check table t1;
@@ -256,6 +258,8 @@ update t1 set s1=2 where seq=1;
check table t1 extended;
drop table t1;
+# Fix if we are using safemalloc
+--replace_result 8388572 8388600 134217692 134217720
select lower(variable_name) as Variable_name, Variable_value as Value from information_schema.session_variables where variable_name like "aria%" and variable_name not like "aria_used_for_temp_tables" order by 1;
--replace_column 2 #
show status like 'aria%';