Inline multiple_value_sets_insert_sql because it never changes, isn't particularly well-factored, and for parity with "not supports_import?"

This commit is contained in:
Ben Woosley 2010-11-16 23:14:28 -08:00 committed by Zach Dennis
parent 2ada56f858
commit 7aefcf1164
2 changed files with 1 additions and 7 deletions

View file

@ -116,12 +116,6 @@ module ActiveRecord::Import::AbstractAdapter
post_sql_statements
end
# Generates the INSERT statement used in insert multiple value sets.
def multiple_value_sets_insert_sql(table_name, column_names, options) # :nodoc:
"INSERT #{options[:ignore] ? 'IGNORE ':''}INTO #{table_name} (#{column_names.join(',')}) VALUES "
end
# Returns SQL the VALUES for an INSERT statement given the passed in +columns+
# and +array_of_attributes+.
def values_sql_for_column_names_and_attributes( columns, array_of_attributes ) # :nodoc: