From e7ff765e116600f85fd3bb68e6e9a5a5cbaef04d Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Wed, 2 Jan 2013 02:39:18 +0900 Subject: Address a failure test_remove_column_with_multi_column_index with Oracle database Not only PostgreSQL, Oracle database adapter drops the multi-column index if any of the indexed columns dropped by remove_column. --- activerecord/test/cases/migration/rename_column_test.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/migration/rename_column_test.rb b/activerecord/test/cases/migration/rename_column_test.rb index 866b2e334c..8f6918d06a 100644 --- a/activerecord/test/cases/migration/rename_column_test.rb +++ b/activerecord/test/cases/migration/rename_column_test.rb @@ -107,8 +107,9 @@ module ActiveRecord assert_equal 1, connection.indexes('test_models').size remove_column("test_models", "hat_size") - # FIXME: should all adapters behave the same? - if current_adapter?(:PostgreSQLAdapter) + # Every database and/or database adapter has their own behavior + # if it drops the multi-column index when any of the indexed columns dropped by remove_column. + if current_adapter?(:PostgreSQLAdapter, :OracleAdapter) assert_equal [], connection.indexes('test_models').map(&:name) else assert_equal ['index_test_models_on_hat_style_and_hat_size'], connection.indexes('test_models').map(&:name) -- cgit v1.2.3