summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysql.result
diff options
context:
space:
mode:
authorNirbhay Choubey <nirbhay.choubey@sun.com>2010-12-01 12:25:31 +0530
committerNirbhay Choubey <nirbhay.choubey@sun.com>2010-12-01 12:25:31 +0530
commit2d81ad5be51cb2ec6921e681a6f1020e1cfa8d60 (patch)
tree080c367c0fad1cf75441d8cf5703c7d9257deb5b /mysql-test/r/mysql.result
parentcd504e49bcece187dee85b33e39f72b5eab53cda (diff)
downloadmariadb-git-2d81ad5be51cb2ec6921e681a6f1020e1cfa8d60.tar.gz
Additional fix for bug#54899
Fixing the testcase to use the database name as connected_db instead of 'test' database. mysql-test/r/mysql.result: Additional fix in the test for bug#54899. mysql-test/t/mysql.test: Additional fix in the test for bug#54899.
Diffstat (limited to 'mysql-test/r/mysql.result')
-rw-r--r--mysql-test/r/mysql.result18
1 files changed, 8 insertions, 10 deletions
diff --git a/mysql-test/r/mysql.result b/mysql-test/r/mysql.result
index cc3f94528f7..f4298cc7a4c 100644
--- a/mysql-test/r/mysql.result
+++ b/mysql-test/r/mysql.result
@@ -294,16 +294,14 @@ Tables_in_test
# Checking --one-database option with non_existent_db
# specified with USE command
#
-SHOW TABLES IN test;
-Tables_in_test
-table_in_test
-DROP DATABASE test;
+CREATE DATABASE connected_db;
+SHOW TABLES IN connected_db;
+Tables_in_connected_db
+table_in_connected_db
-CREATE DATABASE test;
-SHOW TABLES IN test;
-Tables_in_test
-table_in_test
-DROP DATABASE test;
-CREATE DATABASE test;
+SHOW TABLES IN connected_db;
+Tables_in_connected_db
+table_in_connected_db
+DROP DATABASE connected_db;
End of tests