Sha256: 2a0bc9668ce9f84a983546c48b45be07554d96ebae4b3d618d6b42b0f86a3e43

Contents?: true

Size: 704 Bytes

Versions: 121

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

121 entries across 116 versions & 11 rubygems

Version Path
activerecord-7.0.0.rc3 lib/arel/nodes/unary.rb
activerecord-6.1.4.3 lib/arel/nodes/unary.rb
activerecord-6.1.4.2 lib/arel/nodes/unary.rb
activerecord-7.0.0.rc2 lib/arel/nodes/unary.rb
activerecord-7.0.0.rc1 lib/arel/nodes/unary.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/arel/nodes/unary.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/arel/nodes/unary.rb
activerecord-7.0.0.alpha2 lib/arel/nodes/unary.rb
activerecord-7.0.0.alpha1 lib/arel/nodes/unary.rb
activerecord-6.1.4.1 lib/arel/nodes/unary.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activerecord-6.1.4/lib/arel/nodes/unary.rb
activerecord-6.1.4 lib/arel/nodes/unary.rb
activerecord-6.1.3.2 lib/arel/nodes/unary.rb
activerecord-6.1.3.1 lib/arel/nodes/unary.rb
activerecord-6.1.3 lib/arel/nodes/unary.rb
activerecord-6.1.2.1 lib/arel/nodes/unary.rb
activerecord-6.1.2 lib/arel/nodes/unary.rb
activerecord-6.1.1 lib/arel/nodes/unary.rb
activerecord-6.1.0 lib/arel/nodes/unary.rb
activerecord-6.1.0.rc2 lib/arel/nodes/unary.rb