diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-17 17:23:21 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-17 17:23:21 +0400 |
commit | 952d284ba4617958840005d314ae8d19428df1c3 (patch) | |
tree | 72bde7f393958ae287e171c58530151b07acb72a /mysql-test/r/myisampack.result | |
parent | 0077ba49400a58e2b35181f8b9d6e78314a9b36f (diff) | |
download | mariadb-git-952d284ba4617958840005d314ae8d19428df1c3.tar.gz |
Bug#24289 Status Variable "Questions" gets wrong values with Stored Routines(for 5.1)
mysql-test/r/myisampack.result:
result fix
mysql-test/t/myisampack.test:
test case fix
Diffstat (limited to 'mysql-test/r/myisampack.result')
-rw-r--r-- | mysql-test/r/myisampack.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/myisampack.result b/mysql-test/r/myisampack.result index 14b6283bf8f..7ed9b86d887 100644 --- a/mysql-test/r/myisampack.result +++ b/mysql-test/r/myisampack.result @@ -28,7 +28,7 @@ Table Op Msg_type Msg_text test.t1 check status OK DROP TABLE t1; drop table if exists t1; -create table t1(f1 int, f2 varchar(255)); +create table t1(f1 int, f2 char(255)); insert into t1 values(1, 'foo'), (2, 'bar'); insert into t1 select * from t1; insert into t1 select * from t1; |