diff options
author | Alexander Barkov <bar@mariadb.com> | 2019-10-01 22:30:28 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2019-10-01 22:30:28 +0400 |
commit | 4b5a76741eced5b3c39e8438f45d979136d58a33 (patch) | |
tree | 2fabfbd20e9ede2745e03ada59d65db859dfaa80 /mysql-test/main/user_var.result | |
parent | c06397f615e6ad088d93db93a6c596fc7cd92ec0 (diff) | |
download | mariadb-git-4b5a76741eced5b3c39e8438f45d979136d58a33.tar.gz |
MDEV-20712 Wrong data type for CAST(@a AS BINARY) for a numeric variable
Diffstat (limited to 'mysql-test/main/user_var.result')
-rw-r--r-- | mysql-test/main/user_var.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/user_var.result b/mysql-test/main/user_var.result index b475a8ca60a..7b4c8e0b66e 100644 --- a/mysql-test/main/user_var.result +++ b/mysql-test/main/user_var.result @@ -188,7 +188,7 @@ NULL 2 set @v1=null, @v2=1, @v3=1.1, @v4=now(); select coercibility(@v1),coercibility(@v2),coercibility(@v3),coercibility(@v4); coercibility(@v1) coercibility(@v2) coercibility(@v3) coercibility(@v4) -2 2 2 2 +2 5 5 2 set session @honk=99; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '@honk=99' at line 1 select @@local.max_allowed_packet; |