From 8e429e35009f571db788cfbe8c3959e48ebdf549 Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Tue, 2 Apr 2024 14:39:17 +0800 Subject: [PATCH] fix comment syntax for correct website rendering (#16916) (#16933) --- character-set-and-collation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/character-set-and-collation.md b/character-set-and-collation.md index 0564680453b91..95df06e87205f 100644 --- a/character-set-and-collation.md +++ b/character-set-and-collation.md @@ -552,7 +552,7 @@ 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 @@ -560,7 +560,7 @@ 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:**