From 0ee839569769c32434f8dbe56e9a04ada26776b5 Mon Sep 17 00:00:00 2001 From: hongshaoyang Date: Tue, 2 Apr 2024 14:33:17 +0800 Subject: [PATCH] fix comment syntax for correct website rendering (#16916) --- 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 d15f682b247c1..d3b750a6c7b76 100644 --- a/character-set-and-collation.md +++ b/character-set-and-collation.md @@ -553,7 +553,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 @@ -561,7 +561,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:**