aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/join_source.rb
blob: c57ad0e930d964da4c1b8b2f08e7c11e7bdcb9f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Arel
  module Nodes
    ###
    # Class that represents a join source
    #
    #   http://www.sqlite.org/syntaxdiagrams.html#join-source

    class JoinSource < Arel::Nodes::Binary
      def initialize single_source, joinop = []
        super
      end
    end
  end
end