From 7042163d7633c1d453bcbed127d42ea27da6b939 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sat, 20 Oct 2007 21:17:31 +0000 Subject: Ensure that mysql quotes table names with database names correctly. Closes #9911 [crayz] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7980 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/active_schema_test_mysql.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/active_schema_test_mysql.rb b/activerecord/test/active_schema_test_mysql.rb index aa1d712409..673c86c7ce 100644 --- a/activerecord/test/active_schema_test_mysql.rb +++ b/activerecord/test/active_schema_test_mysql.rb @@ -32,6 +32,10 @@ class ActiveSchemaTest < Test::Unit::TestCase assert_equal "ALTER TABLE `people` ADD `key` varchar(32)", add_column(:people, :key, :string, :limit => 32) end + def test_drop_table_with_specific_database + assert_equal "DROP TABLE `otherdb`.`people`", drop_table('otherdb.people') + end + private def method_missing(method_symbol, *arguments) ActiveRecord::Base.connection.send(method_symbol, *arguments) -- cgit v1.2.3