Sha256: 2a0bc9668ce9f84a983546c48b45be07554d96ebae4b3d618d6b42b0f86a3e43

Contents?: true

Size: 704 Bytes

Versions: 114

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class Unary < Arel::Nodes::NodeExpression
      attr_accessor :expr
      alias :value :expr

      def initialize(expr)
        super()
        @expr = expr
      end

      def hash
        @expr.hash
      end

      def eql?(other)
        self.class == other.class &&
          self.expr == other.expr
      end
      alias :== :eql?
    end

    %w{
      Bin
      Cube
      DistinctOn
      Group
      GroupingElement
      GroupingSet
      Lateral
      Limit
      Lock
      Not
      Offset
      On
      OptimizerHints
      RollUp
    }.each do |name|
      const_set(name, Class.new(Unary))
    end
  end
end

Version data entries

114 entries across 109 versions & 9 rubygems

Version Path
activerecord-8.0.0 lib/arel/nodes/unary.rb
activerecord-7.2.2 lib/arel/nodes/unary.rb
activerecord-7.1.5 lib/arel/nodes/unary.rb
activerecord-8.0.0.rc2 lib/arel/nodes/unary.rb
activerecord-7.2.1.2 lib/arel/nodes/unary.rb
activerecord-7.1.4.2 lib/arel/nodes/unary.rb
activerecord-7.0.8.6 lib/arel/nodes/unary.rb
activerecord-6.1.7.10 lib/arel/nodes/unary.rb
activerecord-8.0.0.rc1 lib/arel/nodes/unary.rb
activerecord-6.1.7.9 lib/arel/nodes/unary.rb
activerecord-7.2.1.1 lib/arel/nodes/unary.rb
activerecord-7.1.4.1 lib/arel/nodes/unary.rb
activerecord-7.0.8.5 lib/arel/nodes/unary.rb
activerecord-8.0.0.beta1 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha9 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha8 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha7 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha4 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha3 lib/arel/nodes/unary.rb
omg-activerecord-8.0.0.alpha2 lib/arel/nodes/unary.rb