Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d23c3e03
Commit
d23c3e03
authored
Mar 23, 2020
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use truncate instead of delete to make stat_tables.inc more repeatable
parent
3faa15cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mysql-test/main/stat_tables_par.inc
mysql-test/main/stat_tables_par.inc
+3
-3
No files found.
mysql-test/main/stat_tables_par.inc
View file @
d23c3e03
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment