aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapter_test.rb
diff options
context:
space:
mode:
authorSeva Orlov <vseorlov@gmail.com>2016-04-11 20:57:19 +0300
committerJeremy Daer <jeremydaer@gmail.com>2016-04-24 14:32:55 -0700
commitc41ef01aec40bfaa9af707551d1e8a1f9f7380d1 (patch)
tree1bb0e0172a8da1110351499cbac01db4f8738973 /activerecord/test/cases/adapter_test.rb
parent6c6eeda54d0f2c8e689772b50cc5c4419fa82749 (diff)
downloadrails-c41ef01aec40bfaa9af707551d1e8a1f9f7380d1.tar.gz
rails-c41ef01aec40bfaa9af707551d1e8a1f9f7380d1.tar.bz2
rails-c41ef01aec40bfaa9af707551d1e8a1f9f7380d1.zip
remove_index do not fetch indexes if name is specified
There is no need to fetch all table indexes in remove_index if name is specified. If name is wrong, then StatementInvalid will be raised. Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
Diffstat (limited to 'activerecord/test/cases/adapter_test.rb')
-rw-r--r--activerecord/test/cases/adapter_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb
index 32391e2e8b..34e3bc9d66 100644
--- a/activerecord/test/cases/adapter_test.rb
+++ b/activerecord/test/cases/adapter_test.rb
@@ -87,6 +87,17 @@ module ActiveRecord
@connection.remove_index(:accounts, :name => idx_name) rescue nil
end
+ def test_remove_index_when_name_and_wrong_column_name_specified
+ index_name = "accounts_idx"
+
+ @connection.add_index :accounts, :firm_id, :name => index_name
+ assert_raises ArgumentError do
+ @connection.remove_index :accounts, :name => index_name, :column => :wrong_column_name
+ end
+ ensure
+ @connection.remove_index(:accounts, :name => index_name)
+ end
+
def test_current_database
if @connection.respond_to?(:current_database)
assert_equal ARTest.connection_config['arunit']['database'], @connection.current_database