diff options
author | Igor Babaev <igor@askmonty.org> | 2012-05-08 16:42:55 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2012-05-08 16:42:55 -0700 |
commit | 2a1afc29f252fb189f6e93a2e0d3a1939f8220d5 (patch) | |
tree | 66df935533dfe35df5603e3ccd04e29919cc66ce /mysql-test/include | |
parent | 906c9a93a0da7df1e27d776d561c84c48ce7ee6d (diff) | |
download | mariadb-git-2a1afc29f252fb189f6e93a2e0d3a1939f8220d5.tar.gz |
Inverted the option --skip-stat-tables for --stat-tables.
Set it to 0 by default.
Now only the tests that use persistent statistics tables require
starting the server with --stat-tables set on.
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/have_stat_tables.inc | 5 | ||||
-rw-r--r-- | mysql-test/include/have_stat_tables.opt | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/include/have_stat_tables.inc b/mysql-test/include/have_stat_tables.inc new file mode 100644 index 00000000000..97d0e44e39e --- /dev/null +++ b/mysql-test/include/have_stat_tables.inc @@ -0,0 +1,5 @@ +if (`select count(*) < 3 from information_schema.tables + where table_schema = 'mysql' and table_name in ('table_stat','column_stat','index_stat')`) +{ + --skip Needs stat tables +} diff --git a/mysql-test/include/have_stat_tables.opt b/mysql-test/include/have_stat_tables.opt new file mode 100644 index 00000000000..eb8f2d54ff6 --- /dev/null +++ b/mysql-test/include/have_stat_tables.opt @@ -0,0 +1 @@ +--stat-tables |