diff options
author | Raimonds Simanovskis <raimonds.simanovskis@gmail.com> | 2010-09-28 16:15:35 +0300 |
---|---|---|
committer | Raimonds Simanovskis <raimonds.simanovskis@gmail.com> | 2010-09-28 16:15:35 +0300 |
commit | c66fcc2b151337d337e16ead970db11491d74bbe (patch) | |
tree | 3c58028c0fae3d15bbaf628e8f938c592b7393f7 /lib | |
parent | e75f0e5ae5dd225fe44bd3f6c582f86e18d91ceb (diff) | |
download | rails-c66fcc2b151337d337e16ead970db11491d74bbe.tar.gz rails-c66fcc2b151337d337e16ead970db11491d74bbe.tar.bz2 rails-c66fcc2b151337d337e16ead970db11491d74bbe.zip |
pass primary key name and value to ActiveRecord adapter insert method
necessary for Oracle adapter for RETURNING ... INTO ... clause generation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/select_manager.rb | 12 | ||||
-rw-r--r-- | lib/arel/table.rb | 6 |
2 files changed, 15 insertions, 3 deletions
diff --git a/lib/arel/select_manager.rb b/lib/arel/select_manager.rb index 21b9395120..77930a6bb1 100644 --- a/lib/arel/select_manager.rb +++ b/lib/arel/select_manager.rb @@ -163,9 +163,17 @@ module Arel # FIXME: this method should go away def insert values im = InsertManager.new @engine - im.into @ctx.froms + table = @ctx.froms + primary_key_name = (primary_key = table.primary_key) && primary_key.name + # FIXME: in AR tests values sometimes were Array and not Hash therefore is_a?(Hash) check is added + primary_key_value = primary_key && values.is_a?(Hash) && values[primary_key] + im.into table im.insert values - @engine.connection.insert im.to_sql + # Oracle adapter needs primary key name to generate RETURNING ... INTO ... clause + # for tables which assign primary key value using trigger. + # RETURNING ... INTO ... clause will be added only if primary_key_value is nil + # therefore it is necessary to pass primary key value as well + @engine.connection.insert im.to_sql, 'AREL', primary_key_name, primary_key_value end private diff --git a/lib/arel/table.rb b/lib/arel/table.rb index ba31e3183b..3285037154 100644 --- a/lib/arel/table.rb +++ b/lib/arel/table.rb @@ -27,7 +27,11 @@ module Arel end def primary_key - @primary_key ||= self[@engine.connection.primary_key(name)] + @primary_key ||= begin + primary_key_name = @engine.connection.primary_key(name) + # some tables might be without primary key + primary_key_name && self[primary_key_name] + end end def alias |