summaryrefslogtreecommitdiff
path: root/mysql-test/r/errors.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2017-10-13 07:06:09 +0400
committerAlexander Barkov <bar@mariadb.org>2017-10-13 07:06:09 +0400
commit991b9ee73597ba7287267207b3918e157e346899 (patch)
treecec11c143502fc4a5ecfe308d042680f7511a282 /mysql-test/r/errors.result
parent93aadda513d8b5c2b49001514e235c4fdd73e08a (diff)
downloadmariadb-git-991b9ee73597ba7287267207b3918e157e346899.tar.gz
MDEV-13530 VARBINARY doesn't convert to to BLOB for sizes 65533, 65534 and 65535
Diffstat (limited to 'mysql-test/r/errors.result')
-rw-r--r--mysql-test/r/errors.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/errors.result b/mysql-test/r/errors.result
index 23c77d3978c..d71759cb128 100644
--- a/mysql-test/r/errors.result
+++ b/mysql-test/r/errors.result
@@ -27,7 +27,7 @@ create table t1 (a int(256));
ERROR 42000: Display width out of range for 'a' (max = 255)
set sql_mode='traditional';
create table t1 (a varchar(66000));
-ERROR 42000: Column length too big for column 'a' (max = 65535); use BLOB or TEXT instead
+ERROR 42000: Column length too big for column 'a' (max = 65532); use BLOB or TEXT instead
set sql_mode=default;
CREATE TABLE t1 (a INT);
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));