summaryrefslogtreecommitdiff
path: root/mysql-test/main/update_use_source.test
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-10-06 07:38:46 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2022-10-06 07:38:46 +0300
commitba9ade47e3acf1e0f72a52f24832cd6b3619fb5f (patch)
tree757ffe4ff54c1ef28ab2782c799b34923b7b3164 /mysql-test/main/update_use_source.test
parentf600690c6be112e2f2b36ffb80c103bbd50814f5 (diff)
downloadmariadb-git-ba9ade47e3acf1e0f72a52f24832cd6b3619fb5f.tar.gz
MDEV-29710: Skip main.update_use_source on Valgrind
This test is not slow, but it reliably produces an EXPLAIN difference (number of rows) on the Valgrind builder. A possible explanation could be that the purge threads are not being scheduled. Valgrind runs all threads in a single thread.
Diffstat (limited to 'mysql-test/main/update_use_source.test')
-rw-r--r--mysql-test/main/update_use_source.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/main/update_use_source.test b/mysql-test/main/update_use_source.test
index 7ed5f95d68d..a73bbba7613 100644
--- a/mysql-test/main/update_use_source.test
+++ b/mysql-test/main/update_use_source.test
@@ -1,5 +1,6 @@
--source include/have_sequence.inc
--source include/have_innodb.inc
+--source include/no_valgrind_without_big.inc
create table t1 (old_c1 integer, old_c2 integer,c1 integer, c2 integer, c3 integer) engine=InnoDb;
create view v1 as select * from t1 where c2=2;