aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/join.rb
blob: d3307fe0e07489cdc6259ac57dd02e5a663e1227 (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                    
 




                                              



         
module Arel
  module Nodes
    class Join < Arel::Nodes::Binary

      alias :single_source :left
      alias :constraint :right

      def initialize single_source, constraint
        super
      end
    end
  end
end