Test that change_column quotes column names. Closes #9537 [lawrence]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7909 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-10-15 07:33:53 +00:00
parent 9f5a9aa35f
commit 660a696a3f

View File

@@ -548,7 +548,19 @@ if ActiveRecord::Base.connection.supports_migrations?
Person.reset_column_information
assert_equal "Tester", Person.new.first_name
end
def test_change_column_quotes_column_names
Person.connection.create_table :testings do |t|
t.column :select, :string
end
assert_nothing_raised { Person.connection.change_column :testings, :select, :string, :limit => 10 }
assert_nothing_raised { Person.connection.execute "insert into testings (#{Person.connection.quote_column_name('select')}) values ('7 chars')" }
ensure
Person.connection.drop_table :testings rescue nil
end
def test_change_column_default_to_null
Person.connection.change_column_default "people", "first_name", nil
Person.reset_column_information