diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-05-23 23:13:54 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-05-23 23:13:54 +0400 |
commit | 90f06818b3250fd44aff4235875c7b6dd6ba8041 (patch) | |
tree | fc573c1073c6e00024cc080704a97c4448d3fb95 /mysql-test/r/sp.result | |
parent | 62b62319bf92e9c00da8498fe6e9944a4e43ed7d (diff) | |
download | mariadb-git-90f06818b3250fd44aff4235875c7b6dd6ba8041.tar.gz |
MDEV-12876 Wrong data type for CREATE..SELECT sp_var
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 5f1f8f92d50..a53ca16f283 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -6469,7 +6469,7 @@ CALL p2(10); SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE `t1` ( - `v` bigint(11) DEFAULT NULL + `v` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 DROP TABLE t1; @@ -6480,7 +6480,7 @@ Warning 1366 Incorrect integer value: 'text' for column 'v' at row 1 SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE `t1` ( - `v` bigint(11) DEFAULT NULL + `v` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 DROP TABLE t1; |