Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid N+1 queries coming from #version_limit when destroying records #1511

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ recommendations of [keepachangelog.com](http://keepachangelog.com/).

### Fixed

- None
- [#1511](https://github.com/paper-trail-gem/paper_trail/pull/1511) - Avoid N+1
queries when destroying a record with a `has_many` `dependent: :destroy`
association where the `has_many` target model is tracked by PaperTrail.

## 16.0.0 (2024-11-08)

Expand Down
2 changes: 1 addition & 1 deletion lib/paper_trail/version_concern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def sibling_versions
#
# @api private
def version_limit
klass = item.class
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Calling item here is essentially what was causing the N+1 query, since instantiating the version's item requires querying the database for the item's attributes.

This change avoids that database query by instead just referencing the item_subtype or item_type fields of the version record, which does not require any additional database query.

klass = ((respond_to?(:item_subtype) && item_subtype) || item_type).constantize
if limit_option?(klass)
klass.paper_trail_options[:limit]
elsif base_class_limit_option?(klass)
Expand Down
1 change: 1 addition & 0 deletions paper_trail.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ has been destroyed.
s.add_development_dependency "ffaker", "~> 2.20"
s.add_development_dependency "generator_spec", "~> 0.9.4"
s.add_development_dependency "memory_profiler", "~> 1.0.0"
s.add_development_dependency "n_plus_one_control", "~> 0.7.2"

# For `spec/dummy_app`. Technically, we only need `actionpack` (as of 2020).
# However, that might change in the future, and the advantages of specifying a
Expand Down
17 changes: 17 additions & 0 deletions spec/dummy_app/app/versions/post_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,21 @@

class PostVersion < PaperTrail::Version
self.table_name = "post_versions"

# BEGIN Hack to simulate a version class that doesn't have the optional `item_subtype` column. >>>
def item_subtype
raise "This method should not be called!"
end

# We will follow Ruby's `respond_to?` method signature, including an optional boolean parameter.
# rubocop:disable Style/OptionalBooleanParameter
def respond_to?(method_name, include_private = false)
# rubocop:enable Style/OptionalBooleanParameter
if method_name.to_sym == :item_subtype
false
else
super
end
end
# <<< END Hack to simulate a version class that doesn't have the optional `item_subtype` column.
end
17 changes: 17 additions & 0 deletions spec/models/order_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,22 @@

expect(customer.versions.count).to(eq(3))
end

# We need to use an instance variable to work with the `n_plus_one_control` gem in this spec.
# rubocop:disable RSpec/InstanceVariable
context "when the record has many associated records (N+1 check)", :n_plus_one do
populate do |n|
@customer = Customer.create!

n.times do
@customer.orders.create!
end
end

it "does not cause an N+1 query" do
expect { @customer.destroy! }.to perform_constant_number_of_queries
end
end
# rubocop:enable RSpec/InstanceVariable
end
end
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
# by the `Bundler.require` in `config/application.rb`.
require "paper_trail"
require "ffaker"
require "n_plus_one_control/rspec"
require "rspec/rails"
require "rails-controller-testing"

Expand Down