lib/table_saw/formats/copy.rb in table_saw-3.1.0 vs lib/table_saw/formats/copy.rb in table_saw-3.2.0
- old
+ new
@@ -18,10 +18,10 @@
private
def quoted_columns
TableSaw.schema_cache.columns_hash(table_name)
.each_key
- .map { |name| TableSaw::Connection.adapter.quote_column_name(name) }
+ .map { |name| TableSaw.connection.quote_column_name(name) }
.join(', ')
end
end
end
end