From f1845caddef52a8020be99c17e05d5cd6b85854a Mon Sep 17 00:00:00 2001 From: hongshaoyang Date: Mon, 1 Apr 2024 15:47:34 +0800 Subject: [PATCH] Update character-set-and-collation.md --- 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:**