Skip to content

Commit

Permalink
Add white space after ANALYZE TABLE (#10949) (#10952)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot committed Oct 21, 2022
1 parent dc67be5 commit ccc98f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For TiDB Cloud, the default value of this variable is `1`.
> - If the `ANALYZE` statement is executed manually, manually analyze every table to be analyzed.
>
> ```sql
> SELECT DISTINCT(CONCAT('ANALYZE TABLE', table_schema, '.', table_name, ';')) FROM information_schema.tables, mysql.stats_histograms WHERE stats_ver = 2 AND table_id = tidb_table_id;
> SELECT DISTINCT(CONCAT('ANALYZE TABLE ', table_schema, '.', table_name, ';')) FROM information_schema.tables, mysql.stats_histograms WHERE stats_ver = 2 AND table_id = tidb_table_id;
> ```
>
> - If TiDB automatically executes the `ANALYZE` statement because the auto-analysis has been enabled, execute the following statement that generates the `DROP STATS` statement:
Expand Down

0 comments on commit ccc98f1

Please sign in to comment.