aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/join.rb
blob: d3307fe0e07489cdc6259ac57dd02e5a663e1227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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