Skip to content

Commit

Permalink
Add white space after ANALYZE TABLE (#10949) (#10950)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot committed Oct 21, 2022
1 parent 5df5687 commit aef9a07
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 @@ -14,7 +14,7 @@ TiDB uses statistics to decide [which index to choose](/choose-index.md). The `t
> - 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 aef9a07

Please sign in to comment.