Skip to content

Commit 97ebd59

Browse files
committed
fix : make lint happy
1 parent 669d3d4 commit 97ebd59

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

sql-statements/sql-statement-refresh-stats.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,10 @@ ClusterOption ::=
5252
- `db_name.table_name` refreshes a fully qualified table.
5353
- `db_name.*` refreshes every table in the specified database.
5454
- `*.*` refreshes every table in the cluster.
55-
- **`FULL`**
56-
Forces TiDB to load full statistics (histograms, TopN, CMSketches) into memory, equivalent to setting [`lite-init-stats`](/tidb-configuration-file.md#lite-init-stats-new-in-v710) to `false` for this operation. Use this when you need complete statistics immediately after the refresh.
57-
- **`LITE`**
58-
Uses lightweight initialization, equivalent to `lite-init-stats = true`, which skips loading histograms and other heavy structures until they are needed.
59-
- **`CLUSTER`**
60-
Broadcasts the refresh request to every TiDB server. Without this keyword, only the TiDB node that receives the statement reloads its in-memory statistics.
61-
- **Default mode**
62-
If neither `FULL` nor `LITE` is specified, TiDB uses the current value of [`lite-init-stats`](/tidb-configuration-file.md#lite-init-stats-new-in-v710).
55+
- **`FULL`** Forces TiDB to load full statistics (histograms, TopN, CMSketches) into memory, equivalent to setting [`lite-init-stats`](/tidb-configuration-file.md#lite-init-stats-new-in-v710) to `false` for this operation. Use this when you need complete statistics immediately after the refresh.
56+
- **`LITE`** Uses lightweight initialization, equivalent to `lite-init-stats = true`, which skips loading histograms and other heavy structures until they are needed.
57+
- **`CLUSTER`** Broadcasts the refresh request to every TiDB server. Without this keyword, only the TiDB node that receives the statement reloads its in-memory statistics.
58+
- **Default mode** If neither `FULL` nor `LITE` is specified, TiDB uses the current value of [`lite-init-stats`](/tidb-configuration-file.md#lite-init-stats-new-in-v710).
6359

6460
## Examples
6561

0 commit comments

Comments
 (0)