Sha256: f0119b2bf2254be93232404debf9547e16b7f250702d49dc11386b67aaf5ea29

Contents?: true

Size: 599 Bytes

Versions: 80

Compression:

Stored size: 599 Bytes

Contents

# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module Savepoints
      def current_savepoint_name
        current_transaction.savepoint_name
      end

      def create_savepoint(name = current_savepoint_name)
        execute("SAVEPOINT #{name}", "TRANSACTION")
      end

      def exec_rollback_to_savepoint(name = current_savepoint_name)
        execute("ROLLBACK TO SAVEPOINT #{name}", "TRANSACTION")
      end

      def release_savepoint(name = current_savepoint_name)
        execute("RELEASE SAVEPOINT #{name}", "TRANSACTION")
      end
    end
  end
end

Version data entries

80 entries across 76 versions & 8 rubygems

Version Path
activerecord-7.0.7.1 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-6.1.7.5 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.7 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.6 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.5.1 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-6.1.7.4 lib/active_record/connection_adapters/abstract/savepoints.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/connection_adapters/abstract/savepoints.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/connection_adapters/abstract/savepoints.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/connection_adapters/abstract/savepoints.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.5 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.4.3 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-6.1.7.3 lib/active_record/connection_adapters/abstract/savepoints.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-6.1.7.2 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.4.2 lib/active_record/connection_adapters/abstract/savepoints.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-7.0.4.1 lib/active_record/connection_adapters/abstract/savepoints.rb
activerecord-6.1.7.1 lib/active_record/connection_adapters/abstract/savepoints.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/connection_adapters/abstract/savepoints.rb