diff options
author | Igor Babaev <igor@askmonty.org> | 2012-07-27 12:05:23 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2012-07-27 12:05:23 -0700 |
commit | 26947f5adb72cd6b8190ee5d5e6d11be6a2448b5 (patch) | |
tree | 4550e33518ee3cd6ee3fa4ef3af0ba17ac577f4b /mysql-test/r/stat_tables.result | |
parent | 8c499274da21af6226785d51dd24968bf2b1befe (diff) | |
download | mariadb-git-26947f5adb72cd6b8190ee5d5e6d11be6a2448b5.tar.gz |
Added missing declaration of statistics_lock.
Replaced bzero with memset.
Added missing --source include/have_debug_sync.inc into stat_tables.test.
Diffstat (limited to 'mysql-test/r/stat_tables.result')
-rw-r--r-- | mysql-test/r/stat_tables.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/stat_tables.result b/mysql-test/r/stat_tables.result index 09486d4ce0b..9d62ff357e2 100644 --- a/mysql-test/r/stat_tables.result +++ b/mysql-test/r/stat_tables.result @@ -369,6 +369,7 @@ revenue revenue 77949.91860000002 set use_stat_tables='preferably'; +set debug_sync='RESET'; select * from mysql.index_stat where table_name='lineitem' order by index_name; db_name table_name index_name prefix_arity avg_frequency dbt3_s001 lineitem PRIMARY 1 4.0033 @@ -436,6 +437,7 @@ set debug_sync='statistics_collection_start2 WAIT_FOR first_thread_working'; use dbt3_s001; set use_stat_tables='preferably'; analyze table lineitem persistent for columns() indexes (i_l_receiptdate); +set debug_sync='RESET'; select * from mysql.index_stat where table_name='lineitem' order by index_name; db_name table_name index_name prefix_arity avg_frequency dbt3_s001 lineitem PRIMARY 1 4.0033 |