aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/relations
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2010-02-18 18:28:27 -0300
committerEmilio Tagua <miloops@gmail.com>2010-02-18 18:28:27 -0300
commitd51697d2bd2cdd6394cb5e665aab8ab43ce9a14a (patch)
tree444a5a6c23052dc827979c7fd0f9bd93b77ffcb3 /lib/arel/engines/sql/relations
parent1c0d7dc7f62e8744b476464f8aefc1867986f0bd (diff)
downloadrails-d51697d2bd2cdd6394cb5e665aab8ab43ce9a14a.tar.gz
rails-d51697d2bd2cdd6394cb5e665aab8ab43ce9a14a.tar.bz2
rails-d51697d2bd2cdd6394cb5e665aab8ab43ce9a14a.zip
Added support for RETURNING primary key when available, only for
PostgreSQL.
Diffstat (limited to 'lib/arel/engines/sql/relations')
-rw-r--r--lib/arel/engines/sql/relations/compiler.rb4
-rw-r--r--lib/arel/engines/sql/relations/writes.rb3
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/arel/engines/sql/relations/compiler.rb b/lib/arel/engines/sql/relations/compiler.rb
index 4bc169096a..185f1a5c87 100644
--- a/lib/arel/engines/sql/relations/compiler.rb
+++ b/lib/arel/engines/sql/relations/compiler.rb
@@ -26,6 +26,10 @@ module Arel
"WHERE #{quoted_primary_key} IN (SELECT #{quoted_primary_key} FROM #{engine.connection.quote_table_name table.name} #{conditions})"
end
+ def supports_insert_with_returning?
+ false
+ end
+
protected
def method_missing(method, *args, &block)
relation.send(method, *args, &block)
diff --git a/lib/arel/engines/sql/relations/writes.rb b/lib/arel/engines/sql/relations/writes.rb
index 30b36ddda8..00cd61cdde 100644
--- a/lib/arel/engines/sql/relations/writes.rb
+++ b/lib/arel/engines/sql/relations/writes.rb
@@ -32,7 +32,8 @@ module Arel
build_query \
"INSERT",
"INTO #{table_sql}",
- insertion_attributes_values_sql
+ insertion_attributes_values_sql,
+ ("RETURNING #{engine.quote_column_name(primary_key)}" if compiler.supports_insert_with_returning?)
end
end