aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-10-14 19:05:59 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-10-14 19:05:59 -0700
commitb64c886483e3ad2dc92bf54510cd481f9124fb69 (patch)
treebe8d358d6009dc28ac87ae838df3abfd44ed759b
parentbd6adc877af4687aec636f08e96e19785eea209d (diff)
downloadrails-b64c886483e3ad2dc92bf54510cd481f9124fb69.tar.gz
rails-b64c886483e3ad2dc92bf54510cd481f9124fb69.tar.bz2
rails-b64c886483e3ad2dc92bf54510cd481f9124fb69.zip
fix one deprecation warning
-rw-r--r--lib/arel/visitors/to_sql.rb2
-rw-r--r--test/test_update_manager.rb1
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/arel/visitors/to_sql.rb b/lib/arel/visitors/to_sql.rb
index 4e1f7ab466..b61d5f7acd 100644
--- a/lib/arel/visitors/to_sql.rb
+++ b/lib/arel/visitors/to_sql.rb
@@ -90,7 +90,7 @@ module Arel
warn(<<-eowarn) if $VERBOSE
(#{caller.first}) Using UpdateManager without setting UpdateManager#key is
deprecated and support will be removed in Arel 4.0.0. Please set the primary
-key on UpdateManager using UpdateManager#key=
+key on UpdateManager using UpdateManager#key= '#{key.inspect}'
eowarn
key = o.relation.primary_key
end
diff --git a/test/test_update_manager.rb b/test/test_update_manager.rb
index 1dd881b259..f1a019970d 100644
--- a/test/test_update_manager.rb
+++ b/test/test_update_manager.rb
@@ -19,6 +19,7 @@ module Arel
it 'handles limit properly' do
table = Table.new(:users)
um = Arel::UpdateManager.new Table.engine
+ um.key = 'id'
um.take 10
um.table table
um.set [[table[:name], nil]]