instance method
release_savepoint
Ruby on Rails 6.1.7.10
Since v5.2.8.1Signature
release_savepoint(name = current_savepoint_name)
No documentation comment.
Parameters
-
nameopt = current_savepoint_name
Source
# File activerecord/lib/active_record/connection_adapters/abstract/savepoints.rb, line 18
def release_savepoint(name = current_savepoint_name)
execute("RELEASE SAVEPOINT #{name}", "TRANSACTION")
end
Defined in activerecord/lib/active_record/connection_adapters/abstract/savepoints.rb line 18
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::Savepoints