class Multiwoven::Integrations::Source::AwsAthena::Client

def query(db, query)

def query(db, query)
  records = []
  query_execution(db, query).map do |row|
    records << RecordMessage.new(data: row, emitted_at: Time.now.to_i).to_multiwoven_message
  end
  records
end