summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_binary.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/type_binary.result')
-rw-r--r--mysql-test/r/type_binary.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/type_binary.result b/mysql-test/r/type_binary.result
index 597defb7a9b..34cbc9efabf 100644
--- a/mysql-test/r/type_binary.result
+++ b/mysql-test/r/type_binary.result
@@ -47,7 +47,7 @@ create table t1 (s1 binary(2) primary key);
insert into t1 values (0x01);
insert into t1 values (0x0120);
insert into t1 values (0x0100);
-ERROR 23000: Duplicate entry '' for key 1
+ERROR 23000: Duplicate entry '' for key 'PRIMARY'
select hex(s1) from t1 order by s1;
hex(s1)
0100