Sha256: 8b5ed74631a41a8167f3dbb294f2bcbd5f9de9bce11f32148961a4dc00828240

Contents?: true

Size: 289 Bytes

Versions: 2

Compression:

Stored size: 289 Bytes

Contents

# frozen_string_literal: true

module ActiveRecordDataLoader
  class NullOutputAdapter
    def self.with_output_options(_options)
      yield new
    end

    def copy(table:, columns:, data:, row_numbers:); end

    def insert(command); end

    def write_command(command); end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_record_data_loader-1.3.1 lib/active_record_data_loader/null_output_adapter.rb
active_record_data_loader-1.3.0 lib/active_record_data_loader/null_output_adapter.rb