Sha256: c0cb78c771592e5a7e38661a003d00b109402ffc3c4cb16fe4ffb668590a1ca3

Contents?: true

Size: 1.26 KB

Versions: 80

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    ###
    # Abstract base class for all AST nodes
    class Node
      include Arel::FactoryMethods

      ###
      # Factory method to create a Nodes::Not node that has the recipient of
      # the caller as a child.
      def not
        Nodes::Not.new self
      end

      ###
      # Factory method to create a Nodes::Grouping node that has an Nodes::Or
      # node as a child.
      def or(right)
        Nodes::Grouping.new Nodes::Or.new(self, right)
      end

      ###
      # Factory method to create an Nodes::And node.
      def and(right)
        Nodes::And.new [self, right]
      end

      def invert
        Arel::Nodes::Not.new(self)
      end

      # 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`?  :'(
      def to_sql(engine = Table.engine)
        collector = Arel::Collectors::SQLString.new
        collector = engine.connection.visitor.accept self, collector
        collector.value
      end

      def fetch_attribute
      end

      def equality?; false; end
    end
  end
end

Version data entries

80 entries across 76 versions & 8 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.8.7/lib/arel/nodes/node.rb
activerecord-7.0.8.7 lib/arel/nodes/node.rb
activerecord-7.0.8.6 lib/arel/nodes/node.rb
activerecord-6.1.7.10 lib/arel/nodes/node.rb
activerecord-6.1.7.9 lib/arel/nodes/node.rb
activerecord-7.0.8.5 lib/arel/nodes/node.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/arel/nodes/node.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/nodes/node.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/nodes/node.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/arel/nodes/node.rb
activerecord-7.0.8.4 lib/arel/nodes/node.rb
activerecord-6.1.7.8 lib/arel/nodes/node.rb
activerecord-7.0.8.1 lib/arel/nodes/node.rb
activerecord-6.1.7.7 lib/arel/nodes/node.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/arel/nodes/node.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/arel/nodes/node.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/arel/nodes/node.rb
activerecord-7.0.8 lib/arel/nodes/node.rb
activerecord-7.0.7.2 lib/arel/nodes/node.rb
activerecord-6.1.7.6 lib/arel/nodes/node.rb