Skip to content

Commit

Permalink
Merge pull request #11251 from neerajdotname/deprecated-finder-sql
Browse files Browse the repository at this point in the history
Removed support for deprecated finder sql
  • Loading branch information
rafaelfranca committed Jul 2, 2013
2 parents f875d31 + f195e07 commit 17d2e44
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 210 deletions.
4 changes: 4 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
* Removed support for deprecated `finder_sql` in associations.

*Neeraj Singh*

* Support array as root element in JSON fields.

*Alexey Noskov & Francesco Rodriguez*
Expand Down
Expand Up @@ -8,7 +8,7 @@ class CollectionAssociation < Association #:nodoc:
CALLBACKS = [:before_add, :after_add, :before_remove, :after_remove]

def valid_options
super + [:table_name, :finder_sql, :before_add,
super + [:table_name, :before_add,
:after_add, :before_remove, :after_remove, :extend]
end

Expand Down
Expand Up @@ -44,7 +44,7 @@ def writer(records)

# Implements the ids reader method, e.g. foo.item_ids for Foo.has_many :items
def ids_reader
if loaded? || options[:finder_sql]
if loaded?
load_target.map do |record|
record.send(reflection.association_primary_key)
end
Expand Down Expand Up @@ -79,9 +79,7 @@ def find(*args)
if block_given?
load_target.find(*args) { |*block_args| yield(*block_args) }
else
if options[:finder_sql]
find_by_scan(*args)
elsif options[:inverse_of] && loaded?
if options[:inverse_of] && loaded?
args = args.flatten
raise RecordNotFound, "Couldn't find #{scope.klass.name} without an ID" if args.blank?

Expand Down Expand Up @@ -197,36 +195,27 @@ def destroy_all
end
end

# Count all records using SQL. If the +:finder_sql+ option is set for the
# association, it will be used for the query. Otherwise, construct options and pass them with
# Count all records using SQL. Construct options and pass them with
# scope to the target class's +count+.
def count(column_name = nil, count_options = {})
column_name, count_options = nil, column_name if column_name.is_a?(Hash)

if options[:finder_sql]
unless count_options.blank?
raise ArgumentError, "If finder_sql is used then options cannot be passed"
end

reflection.klass.count_by_sql(custom_counter_sql)
else
relation = scope
if association_scope.distinct_value
# This is needed because 'SELECT count(DISTINCT *)..' is not valid SQL.
column_name ||= reflection.klass.primary_key
relation = relation.distinct
end
relation = scope
if association_scope.distinct_value
# This is needed because 'SELECT count(DISTINCT *)..' is not valid SQL.
column_name ||= reflection.klass.primary_key
relation = relation.distinct
end

value = relation.count(column_name)
value = relation.count(column_name)

limit = options[:limit]
offset = options[:offset]
limit = options[:limit]
offset = options[:offset]

if limit || offset
[ [value - offset.to_i, 0].max, limit.to_i ].min
else
value
end
if limit || offset
[ [value - offset.to_i, 0].max, limit.to_i ].min
else
value
end
end

Expand Down Expand Up @@ -361,7 +350,6 @@ def include?(record)
if record.new_record?
include_in_memory?(record)
else
load_target if options[:finder_sql]
loaded? ? target.include?(record) : scope.exists?(record)
end
else
Expand Down Expand Up @@ -406,27 +394,8 @@ def null_scope?

private

def custom_counter_sql
# replace the SELECT clause with COUNT(SELECTS), preserving any hints within /* ... */
interpolate(options[:finder_sql]).sub(/SELECT\b(\/\*.*?\*\/ )?(.*)\bFROM\b/im) do
count_with = $2.to_s
count_with = '*' if count_with.blank? || count_with =~ /,/ || count_with =~ /\.\*/
"SELECT #{$1}COUNT(#{count_with}) FROM"
end
end

def custom_finder_sql
interpolate(options[:finder_sql])
end

def find_target
records =
if options[:finder_sql]
reflection.klass.find_by_sql(custom_finder_sql)
else
scope.to_a
end

records = scope.to_a
records.each { |record| set_inverse_instance(record) }
records
end
Expand Down Expand Up @@ -565,7 +534,6 @@ def callbacks_for(callback_name)
# Otherwise, go to the database only if none of the following are true:
# * target already loaded
# * owner is new record
# * custom :finder_sql exists
# * target contains new or changed record(s)
# * the first arg is an integer (which indicates the number of records to be returned)
def fetch_first_or_last_using_find?(args)
Expand All @@ -574,7 +542,6 @@ def fetch_first_or_last_using_find?(args)
else
!(loaded? ||
owner.new_record? ||
options[:finder_sql] ||
target.any? { |record| record.new_record? || record.changed? } ||
args.first.kind_of?(Integer))
end
Expand All @@ -591,7 +558,7 @@ def include_in_memory?(record)
end
end

# If using a custom finder_sql or if the :inverse_of option has been
# If the :inverse_of option has been
# specified, then #find scans the entire collection.
def find_by_scan(*args)
expects_array = args.first.kind_of?(Array)
Expand Down
Expand Up @@ -58,8 +58,6 @@ def insert_record(record, validate = true, raise = false)
def count_records
count = if has_cached_counter?
owner.send(:read_attribute, cached_counter_attribute_name)
elsif options[:finder_sql]
reflection.klass.count_by_sql(custom_counter_sql)
else
scope.count
end
Expand Down
Expand Up @@ -524,25 +524,6 @@ def test_include_returns_false_for_non_matching_record_to_verify_scoping
assert ! project.developers.include?(developer)
end

def test_find_in_association_with_custom_finder_sql
assert_equal developers(:david), projects(:active_record).developers_with_finder_sql.find(developers(:david).id), "SQL find"

active_record = projects(:active_record)
active_record.developers_with_finder_sql.reload
assert_equal developers(:david), active_record.developers_with_finder_sql.find(developers(:david).id), "Ruby find"
end

def test_find_in_association_with_custom_finder_sql_and_multiple_interpolations
# interpolate once:
assert_equal [developers(:david), developers(:jamis), developers(:poor_jamis)], projects(:active_record).developers_with_finder_sql, "first interpolation"
# interpolate again, for a different project id
assert_equal [developers(:david)], projects(:action_controller).developers_with_finder_sql, "second interpolation"
end

def test_find_in_association_with_custom_finder_sql_and_string_id
assert_equal developers(:david), projects(:active_record).developers_with_finder_sql.find(developers(:david).id.to_s), "SQL find"
end

def test_find_with_merged_options
assert_equal 1, projects(:active_record).limited_developers.size
assert_equal 1, projects(:active_record).limited_developers.to_a.size
Expand Down Expand Up @@ -778,13 +759,6 @@ def test_count
assert_equal 2, david.projects.count
end

unless current_adapter?(:PostgreSQLAdapter)
def test_count_with_finder_sql
assert_equal 3, projects(:active_record).developers_with_finder_sql.count
assert_equal 3, projects(:active_record).developers_with_multiline_finder_sql.count
end
end

def test_association_proxy_transaction_method_starts_transaction_in_association_class
Post.expects(:transaction)
Category.first.posts.transaction do
Expand Down
114 changes: 0 additions & 114 deletions activerecord/test/cases/associations/has_many_associations_test.rb
Expand Up @@ -23,66 +23,6 @@
require 'models/minivan'
require 'models/speedometer'

class HasManyAssociationsTestForCountWithFinderSql < ActiveRecord::TestCase
class Invoice < ActiveRecord::Base
ActiveSupport::Deprecation.silence do
has_many :custom_line_items, :class_name => 'LineItem', :finder_sql => "SELECT line_items.* from line_items"
end
end
def test_should_fail
assert_raise(ArgumentError) do
Invoice.create.custom_line_items.count(:conditions => {:amount => 0})
end
end
end

class HasManyAssociationsTestForCountWithVariousFinderSqls < ActiveRecord::TestCase
class Invoice < ActiveRecord::Base
ActiveSupport::Deprecation.silence do
has_many :custom_line_items, :class_name => 'LineItem', :finder_sql => "SELECT DISTINCT line_items.amount from line_items"
has_many :custom_full_line_items, :class_name => 'LineItem', :finder_sql => "SELECT line_items.invoice_id, line_items.amount from line_items"
has_many :custom_star_line_items, :class_name => 'LineItem', :finder_sql => "SELECT * from line_items"
has_many :custom_qualified_star_line_items, :class_name => 'LineItem', :finder_sql => "SELECT line_items.* from line_items"
end
end

def test_should_count_distinct_results
invoice = Invoice.new
invoice.custom_line_items << LineItem.new(:amount => 0)
invoice.custom_line_items << LineItem.new(:amount => 0)
invoice.save!

assert_equal 1, invoice.custom_line_items.count
end

def test_should_count_results_with_multiple_fields
invoice = Invoice.new
invoice.custom_full_line_items << LineItem.new(:amount => 0)
invoice.custom_full_line_items << LineItem.new(:amount => 0)
invoice.save!

assert_equal 2, invoice.custom_full_line_items.count
end

def test_should_count_results_with_star
invoice = Invoice.new
invoice.custom_star_line_items << LineItem.new(:amount => 0)
invoice.custom_star_line_items << LineItem.new(:amount => 0)
invoice.save!

assert_equal 2, invoice.custom_star_line_items.count
end

def test_should_count_results_with_qualified_star
invoice = Invoice.new
invoice.custom_qualified_star_line_items << LineItem.new(:amount => 0)
invoice.custom_qualified_star_line_items << LineItem.new(:amount => 0)
invoice.save!

assert_equal 2, invoice.custom_qualified_star_line_items.count
end
end

class HasManyAssociationsTestForReorderWithJoinDependency < ActiveRecord::TestCase
fixtures :authors, :posts, :comments

Expand Down Expand Up @@ -352,26 +292,6 @@ def test_finding_using_primary_key
assert_equal "Summit", Firm.all.merge!(:order => "id").first.clients_using_primary_key.first.name
end

def test_finding_using_sql
firm = Firm.order("id").first
first_client = firm.clients_using_sql.first
assert_not_nil first_client
assert_equal "Microsoft", first_client.name
assert_equal 1, firm.clients_using_sql.size
assert_equal 1, Firm.order("id").first.clients_using_sql.size
end

def test_finding_using_sql_take_into_account_only_uniq_ids
firm = Firm.order("id").first
client = firm.clients_using_sql.first
assert_equal client, firm.clients_using_sql.find(client.id, client.id)
assert_equal client, firm.clients_using_sql.find(client.id, client.id.to_s)
end

def test_counting_using_finder_sql
assert_equal 2, Firm.find(4).clients_using_sql.count
end

def test_belongs_to_sanity
c = Client.new
assert_nil c.firm
Expand Down Expand Up @@ -399,22 +319,6 @@ def test_find_ids
assert_raise(ActiveRecord::RecordNotFound) { firm.clients.find(2, 99) }
end

def test_find_string_ids_when_using_finder_sql
firm = Firm.order("id").first

client = firm.clients_using_finder_sql.find("2")
assert_kind_of Client, client

client_ary = firm.clients_using_finder_sql.find(["2"])
assert_kind_of Array, client_ary
assert_equal client, client_ary.first

client_ary = firm.clients_using_finder_sql.find("2", "3")
assert_kind_of Array, client_ary
assert_equal 2, client_ary.size
assert_equal true, client_ary.include?(client)
end

def test_find_all
firm = Firm.all.merge!(:order => "id").first
assert_equal 2, firm.clients.where("#{QUOTED_TYPE} = 'Client'").to_a.length
Expand Down Expand Up @@ -1324,13 +1228,6 @@ def test_get_ids_ignores_include_option
assert_equal [readers(:michael_welcome).id], posts(:welcome).readers_with_person_ids
end

def test_get_ids_for_unloaded_finder_sql_associations_loads_them
company = companies(:first_firm)
assert !company.clients_using_sql.loaded?
assert_equal [companies(:second_client).id], company.clients_using_sql_ids
assert company.clients_using_sql.loaded?
end

def test_get_ids_for_ordered_association
assert_equal [companies(:second_client).id, companies(:first_client).id], companies(:first_firm).clients_ordered_by_name_ids
end
Expand Down Expand Up @@ -1418,17 +1315,6 @@ def test_include_checks_if_record_exists_if_target_not_loaded
assert ! firm.clients.loaded?
end

def test_include_loads_collection_if_target_uses_finder_sql
firm = companies(:first_firm)
client = firm.clients_using_sql.first

firm.reload
assert ! firm.clients_using_sql.loaded?
assert_equal true, firm.clients_using_sql.include?(client)
assert firm.clients_using_sql.loaded?
end


def test_include_returns_false_for_non_matching_record_to_verify_scoping
firm = companies(:first_firm)
client = Client.create!(:name => 'Not Associated')
Expand Down
4 changes: 0 additions & 4 deletions activerecord/test/models/company.rb
Expand Up @@ -48,10 +48,6 @@ class Firm < Company
has_many :clients_with_interpolated_conditions, ->(firm) { where "rating > #{firm.rating}" }, :class_name => "Client"
has_many :clients_like_ms, -> { where("name = 'Microsoft'").order("id") }, :class_name => "Client"
has_many :clients_like_ms_with_hash_conditions, -> { where(:name => 'Microsoft').order("id") }, :class_name => "Client"
ActiveSupport::Deprecation.silence do
has_many :clients_using_sql, :class_name => "Client", :finder_sql => proc { "SELECT * FROM companies WHERE client_of = #{id}" }
has_many :clients_using_finder_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE 1=1'
end
has_many :plain_clients, :class_name => 'Client'
has_many :readonly_clients, -> { readonly }, :class_name => 'Client'
has_many :clients_using_primary_key, :class_name => 'Client',
Expand Down
4 changes: 0 additions & 4 deletions activerecord/test/models/company_in_module.rb
Expand Up @@ -10,10 +10,6 @@ class Firm < Company
has_many :clients_sorted_desc, -> { order("id DESC") }, :class_name => "Client"
has_many :clients_of_firm, -> { order "id" }, :foreign_key => "client_of", :class_name => "Client"
has_many :clients_like_ms, -> { where("name = 'Microsoft'").order("id") }, :class_name => "Client"
ActiveSupport::Deprecation.silence do
has_many :clients_using_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}'
end

has_one :account, :class_name => 'MyApplication::Billing::Account', :dependent => :destroy
end

Expand Down
8 changes: 0 additions & 8 deletions activerecord/test/models/project.rb
Expand Up @@ -9,14 +9,6 @@ class Project < ActiveRecord::Base
has_and_belongs_to_many :salaried_developers, -> { where "salary > 0" }, :class_name => "Developer"

ActiveSupport::Deprecation.silence do
has_and_belongs_to_many :developers_with_finder_sql, :class_name => "Developer", :finder_sql => proc { "SELECT t.*, j.* FROM developers_projects j, developers t WHERE t.id = j.developer_id AND j.project_id = #{id} ORDER BY t.id" }
has_and_belongs_to_many :developers_with_multiline_finder_sql, :class_name => "Developer", :finder_sql => proc {
"SELECT
t.*, j.*
FROM
developers_projects j,
developers t WHERE t.id = j.developer_id AND j.project_id = #{id} ORDER BY t.id"
}
has_and_belongs_to_many :developers_by_sql, :class_name => "Developer", :delete_sql => proc { |record| "DELETE FROM developers_projects WHERE project_id = #{id} AND developer_id = #{record.id}" }
end

Expand Down

0 comments on commit 17d2e44

Please sign in to comment.