Module: ActiveRecordADBCAdapter::Ingest::ClassMethods

Defined in:
lib/activerecord_adbc_adapter/ingest.rb

Instance Method Summary collapse

Instance Method Details

#ingest(attributes) ⇒ Object



6
7
8
9
10
# File 'lib/activerecord_adbc_adapter/ingest.rb', line 6

def ingest(attributes)
  self.with_connection do |connection|
    connection.ingest(table_name, attributes, name: "#{self} Ingest")
  end
end