我正在将一个遗留项目从 Rails 2.3.2 升级到 2.3.16(由于最近公开的漏洞),但是当我尝试访问has_many
任何模型上的关联时,我得到一个ArgumentError
from sanitize_sql
.
class User
has_many :games, :dependent => destroy
end
class Game
belongs_to :user
end
当我尝试调用Game.last.user
它返回正确的User
对象,但调用User.last.games
我得到以下错误堆栈:
ArgumentError: wrong number of arguments (2 for 1)
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_proxy.rb:174:in `sanitize_sql'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_proxy.rb:174:in `send'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_proxy.rb:174:in `sanitize_sql'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_collection.rb:41:in `find'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_collection.rb:423:in `find_target'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_collection.rb:365:in `load_target'
from /home/username/application/shared/bundle/ruby/1.8/gems/activerecord-2.3.16/lib/active_record/associations/association_proxy.rb:140:in `inspect'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:310:in `output_value'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:159:in `eval_input'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:271:in `signal_status'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:155:in `eval_input'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:154:in `eval_input'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:71:in `start'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:70:in `catch'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/lib/ruby/1.8/irb.rb:70:in `start'
from /home/username/.rvm/rubies/ruby-1.8.7-p371/bin/irb:17
我在 Ruby 1.8.7 上运行 Rails 2.3.16;如果我遗漏了任何其他可能有助于诊断问题的详细信息,请告诉我。
编辑
我似乎已经通过编辑文件中的错误行来临时解决这个问题,activerecord-2.3.16/lib/active_record/associations/association_proxy.rb
如下所示:
# Forwards the call to the reflection class.
def sanitize_sql(sql, table_name = @reflection.klass.quoted_table_name)
@reflection.klass.send(:sanitize_sql, sql) #, table_name)
end
显然,我更喜欢更长期的解决方案,因为我不能 100% 确定这不会产生额外的连锁问题。