aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-04-01 07:55:47 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-04-01 07:55:47 -0700
commita35fede61ac1a2fcff519ad052f2fcb8808922b9 (patch)
tree3cfb5968941e8979ebdfe12c2884398b65f7c8b6 /lib/arel/nodes
parentdbe1f8b29a80bf07aa5df624f68b9de869c1f248 (diff)
parent4cb02380116b102142f85d92b7923c11882f94c7 (diff)
downloadrails-a35fede61ac1a2fcff519ad052f2fcb8808922b9.tar.gz
rails-a35fede61ac1a2fcff519ad052f2fcb8808922b9.tar.bz2
rails-a35fede61ac1a2fcff519ad052f2fcb8808922b9.zip
Merge pull request #252 from stephenprater/right_and_full_outer_joins
Added right and full outer joins
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r--lib/arel/nodes/full_outer_join.rb6
-rw-r--r--lib/arel/nodes/right_outer_join.rb6
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/arel/nodes/full_outer_join.rb b/lib/arel/nodes/full_outer_join.rb
new file mode 100644
index 0000000000..708f161c9a
--- /dev/null
+++ b/lib/arel/nodes/full_outer_join.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class FullOuterJoin < Arel::Nodes::Join
+ end
+ end
+end
diff --git a/lib/arel/nodes/right_outer_join.rb b/lib/arel/nodes/right_outer_join.rb
new file mode 100644
index 0000000000..ea1ddb7d52
--- /dev/null
+++ b/lib/arel/nodes/right_outer_join.rb
@@ -0,0 +1,6 @@
+module Arel
+ module Nodes
+ class RightOuterJoin < Arel::Nodes::Join
+ end
+ end
+end