Commit d23c3e03 authored by Monty's avatar Monty

Use truncate instead of delete to make stat_tables.inc more repeatable

parent 3faa15cf
......@@ -20,9 +20,9 @@ set optimizer_switch='extended_keys=off';
--disable_result_log
--disable_warnings
--source include/dbt3_s001.inc
delete from mysql.table_stats;
delete from mysql.column_stats;
delete from mysql.index_stats;
truncate mysql.table_stats;
truncate mysql.column_stats;
truncate mysql.index_stats;
ANALYZE TABLE
customer, lineitem, nation, orders, part, partsupp, region, supplier;
--enable_warnings
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment