diff options
author | Stephen Prater & Fire-Dragon-DoL <francesco.belladonna@gmail.com> | 2013-07-31 01:08:22 +0200 |
---|---|---|
committer | Stephen Prater <me@stephenprater.com> | 2014-03-30 22:59:16 -0500 |
commit | 4cb02380116b102142f85d92b7923c11882f94c7 (patch) | |
tree | 3cfb5968941e8979ebdfe12c2884398b65f7c8b6 /lib/arel/nodes | |
parent | dbe1f8b29a80bf07aa5df624f68b9de869c1f248 (diff) | |
download | rails-4cb02380116b102142f85d92b7923c11882f94c7.tar.gz rails-4cb02380116b102142f85d92b7923c11882f94c7.tar.bz2 rails-4cb02380116b102142f85d92b7923c11882f94c7.zip |
Added right and full outer joins
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r-- | lib/arel/nodes/full_outer_join.rb | 6 | ||||
-rw-r--r-- | lib/arel/nodes/right_outer_join.rb | 6 |
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 |