diff options
author | monty@donna.mysql.com <> | 2001-01-31 04:47:25 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-01-31 04:47:25 +0200 |
commit | bdbc0ef7a068d77e404bc4e13b864cb41112521a (patch) | |
tree | 851a8ba92ed9883efe2504e0726aae6843c317c0 /mysql-test/r/case.result | |
parent | acd45847ac0485617bece05abccbc9f4e9b2b782 (diff) | |
download | mariadb-git-bdbc0ef7a068d77e404bc4e13b864cb41112521a.tar.gz |
New myisamchk option --sort-recover
Allow delete of crashed MyISAM tables
Fixed bug when BLOB was first part of key
Fixed bug when using result from CASE in GROUP BY
Fixed core-dump bug in monthname()
Optimized calling of check_db_name()
Diffstat (limited to 'mysql-test/r/case.result')
-rw-r--r-- | mysql-test/r/case.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/case.result b/mysql-test/r/case.result index 66538c2fbee..073164aa035 100644 --- a/mysql-test/r/case.result +++ b/mysql-test/r/case.result @@ -32,3 +32,11 @@ case when 1>0 then "TRUE" else "FALSE" END TRUE case when 1<0 then "TRUE" else "FALSE" END FALSE +fcase count(*) +0 2 +2 1 +3 1 +fcase count(*) +nothing 2 +one 1 +two 1 |