From d6247db69c4791d8fdbe7f899e3baaccac12ca3f 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 76ddc824cba88..e98cca51220ed 100644 --- a/character-set-and-collation.md +++ b/character-set-and-collation.md @@ -547,7 +547,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 @@ -555,7 +555,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:**