blob: da828cf9eeee95a0f70815bc010214fc872cd713 (
plain) (
tree)
|
|
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
def empty?
!left && right.empty?
end
end
end
end
|