From 3ffdfa84fc1f9bebc578fe957646af5f194ca625 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sat, 19 Jan 2008 02:43:31 +0000 Subject: [PATCH] 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 --- .../active_record/connection_adapters/postgresql_adapter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index cf5211e514..6060c4ac1a 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -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.