Skip to content

Commit

Permalink
add comma at the end of sql (pingcap#1443)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouqiang-cl authored Aug 10, 2019
1 parent 327e198 commit 7787b25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/how-to/maintain/backup-and-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Then execute two more commands:
- Step 1: before executing the `mydumper` command, query the GC values of the TiDB cluster and adjust it to a suitable value using the MySQL client.

```sql
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time'
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time';
+-----------------------+------------------------------------------------------------------------------------------------+
| VARIABLE_NAME | VARIABLE_VALUE |
+-----------------------+------------------------------------------------------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion v2.1/how-to/maintain/backup-and-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Then execute two more commands:
- Step 1: before executing the `mydumper` command, query the GC values of the TiDB cluster and adjust it to a suitable value using the MySQL client.

```sql
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time'
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time';
+-----------------------+------------------------------------------------------------------------------------------------+
| VARIABLE_NAME | VARIABLE_VALUE |
+-----------------------+------------------------------------------------------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion v3.0/how-to/maintain/backup-and-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Then execute two more commands:
- Step 1: before executing the `mydumper` command, query the GC values of the TiDB cluster and adjust it to a suitable value using the MySQL client.

```sql
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time'
mysql> SELECT * FROM mysql.tidb WHERE VARIABLE_NAME = 'tikv_gc_life_time';
+-----------------------+------------------------------------------------------------------------------------------------+
| VARIABLE_NAME | VARIABLE_VALUE |
+-----------------------+------------------------------------------------------------------------------------------------+
Expand Down

0 comments on commit 7787b25

Please sign in to comment.