2017-02-13 13:58:58 -05:00
|
|
|
# frozen_string_literal: true
|
2018-02-24 01:45:50 -05:00
|
|
|
|
2018-02-24 02:41:47 -05:00
|
|
|
module Arel # :nodoc: all
|
2010-09-15 12:26:01 -04:00
|
|
|
module Nodes
|
|
|
|
###
|
|
|
|
# Abstract base class for all AST nodes
|
|
|
|
class Node
|
2010-12-14 19:24:36 -05:00
|
|
|
include Arel::FactoryMethods
|
2010-12-01 12:19:09 -05:00
|
|
|
|
2010-11-23 19:24:41 -05:00
|
|
|
###
|
|
|
|
# Factory method to create a Nodes::Not node that has the recipient of
|
|
|
|
# the caller as a child.
|
|
|
|
def not
|
2011-02-11 12:08:32 -05:00
|
|
|
Nodes::Not.new self
|
2010-11-23 19:24:41 -05:00
|
|
|
end
|
|
|
|
|
2010-09-15 12:26:01 -04:00
|
|
|
###
|
|
|
|
# Factory method to create a Nodes::Grouping node that has an Nodes::Or
|
|
|
|
# node as a child.
|
2018-02-24 01:45:50 -05:00
|
|
|
def or(right)
|
2010-09-15 12:26:01 -04:00
|
|
|
Nodes::Grouping.new Nodes::Or.new(self, right)
|
|
|
|
end
|
|
|
|
|
|
|
|
###
|
|
|
|
# Factory method to create an Nodes::And node.
|
2018-02-24 01:45:50 -05:00
|
|
|
def and(right)
|
2010-12-09 17:48:28 -05:00
|
|
|
Nodes::And.new [self, right]
|
2010-09-15 12:26:01 -04:00
|
|
|
end
|
2010-09-27 16:12:15 -04:00
|
|
|
|
2020-03-04 08:37:48 -05:00
|
|
|
def invert
|
|
|
|
Arel::Nodes::Not.new(self)
|
|
|
|
end
|
|
|
|
|
2010-09-27 16:12:15 -04:00
|
|
|
# FIXME: this method should go away. I don't like people calling
|
|
|
|
# to_sql on non-head nodes. This forces us to walk the AST until we
|
|
|
|
# can find a node that has a "relation" member.
|
|
|
|
#
|
|
|
|
# Maybe we should just use `Table.engine`? :'(
|
2018-02-24 01:45:50 -05:00
|
|
|
def to_sql(engine = Table.engine)
|
2014-04-08 15:03:52 -04:00
|
|
|
collector = Arel::Collectors::SQLString.new
|
|
|
|
collector = engine.connection.visitor.accept self, collector
|
|
|
|
collector.value
|
2010-09-27 16:12:15 -04:00
|
|
|
end
|
2020-03-10 13:20:32 -04:00
|
|
|
|
|
|
|
def fetch_attribute
|
|
|
|
end
|
2020-01-14 16:14:39 -05:00
|
|
|
|
|
|
|
def equality?; false; end
|
2010-09-15 12:26:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|