Skip to content

Commit

Permalink
Add white space after ANALYZE TABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreoxmt committed Oct 21, 2022
1 parent 969df47 commit bbc2d5d
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 @@ -27,7 +27,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 bbc2d5d

Please sign in to comment.