mirror of
https://github.com/github/rails.git
synced 2026-01-29 16:28:09 -05:00
Remove table quoting; only pull last_insert_id if there's a primary key.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8663 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -386,8 +386,8 @@ module ActiveRecord
|
||||
|
||||
# Executes an INSERT query and returns the new record's ID
|
||||
def insert(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
|
||||
table = sql.split(" ", 4)[2]
|
||||
super || last_insert_id(table, sequence_name || default_sequence_name(table, pk))
|
||||
table = sql.split(" ", 4)[2].gsub('"', '')
|
||||
super || pk && last_insert_id(table, sequence_name || default_sequence_name(table, pk))
|
||||
end
|
||||
|
||||
# Queries the database and returns the results in an Array or nil otherwise.
|
||||
|
||||
Reference in New Issue
Block a user