Skip to content

Commit

Permalink
fix comment syntax for correct website rendering (#16916) (#16933)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Apr 2, 2024
1 parent 2f036db commit 8e429e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions character-set-and-collation.md
Original file line number Diff line number Diff line change
Expand Up @@ -552,15 +552,15 @@ INSERT INTO t VALUES ('a');
```
```sql
ERROR 1062 (23000): Duplicate entry 'a' for key 't.PRIMARY' # TiDB is compatible with the case-insensitive collation of MySQL.
ERROR 1062 (23000): Duplicate entry 'a' for key 't.PRIMARY' -- TiDB is compatible with the case-insensitive collation of MySQL.
```
```sql
INSERT INTO t VALUES ('a ');
```
```sql
ERROR 1062 (23000): Duplicate entry 'a ' for key 't.PRIMARY' # TiDB modifies the `PADDING` behavior to be compatible with MySQL.
ERROR 1062 (23000): Duplicate entry 'a ' for key 't.PRIMARY' -- TiDB modifies the `PADDING` behavior to be compatible with MySQL.
```
> **Note:**
Expand Down

0 comments on commit 8e429e3

Please sign in to comment.