diff options
author | unknown <serg@serg.mylan> | 2004-01-21 23:29:17 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-01-21 23:29:17 +0100 |
commit | 0ef9acc9a9932ea63ff41d4528231632f3a3d31d (patch) | |
tree | 129bb0d5f173f2b8cd7a76e4027d1dc587457261 /mysql-test/r/myisam.result | |
parent | 2c3fdcf749b57d4b168710606c84f42943a4ad24 (diff) | |
download | mariadb-git-0ef9acc9a9932ea63ff41d4528231632f3a3d31d.tar.gz |
two more bugfixes for "space stripping in MyISAM indexes"
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 11e8ef4fcd7..fbb84a677cf 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -390,4 +390,8 @@ insert into t1 values ('aaa '),('aaa'); repair table t1; Table Op Msg_type Msg_text test.t1 repair status OK +select concat(a,'.') from t1 where a='aaa'; +concat(a,'.') +aaa. +aaa . drop table t1; |