mirror of
https://github.com/github/rails.git
synced 2026-02-03 10:45:01 -05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user