method

mark_transaction_written

rails latest stable - Class: ActiveRecord::ConnectionAdapters::DatabaseStatements

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

mark_transaction_written()
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb, line 391
      def mark_transaction_written # :nodoc:
        transaction = current_transaction
        if transaction.open?
          transaction.written ||= true
        end
      end