diff options
author | monty@mysql.com <> | 2006-01-06 00:47:49 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2006-01-06 00:47:49 +0200 |
commit | 6e22e29de669b95aefc4f5f7ce46420e52c99870 (patch) | |
tree | cd157631ca39d533f8aa37ebb570f304e91c81e2 /mysql-test/r/mysqlshow.result | |
parent | 88eee63d8c02e5a4b3ac39c0ed31794dcf243a29 (diff) | |
download | mariadb-git-6e22e29de669b95aefc4f5f7ce46420e52c99870.tar.gz |
Review fixes of new pushed code
- Fixed tests
- Optimized new code
- Fixed some unlikely core dumps
- Better bug fixes for:
- #14397 - OPTIMIZE TABLE with an open HANDLER causes a crash
- #14850 (ERROR 1062 when a quering a view using a Group By on a column that can be null
Diffstat (limited to 'mysql-test/r/mysqlshow.result')
-rw-r--r-- | mysql-test/r/mysqlshow.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/mysqlshow.result b/mysql-test/r/mysqlshow.result index 355c20fdad3..942cde83f21 100644 --- a/mysql-test/r/mysqlshow.result +++ b/mysql-test/r/mysqlshow.result @@ -1,4 +1,4 @@ -DROP TABLE IF EXISTS t1,t2; +DROP TABLE IF EXISTS t1,t2,test1,test2; CREATE TABLE t1 (a int); INSERT INTO t1 VALUES (1),(2),(3); CREATE TABLE t2 (a int, b int); |