Sha256: ea031f66069a9f2a0ef4f53691c64aa1c4c0799f51e6bde2ef89edb9b1956505

Contents?: true

Size: 1.43 KB

Versions: 77

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class Casted < Arel::Nodes::NodeExpression # :nodoc:
      attr_reader :value, :attribute
      alias :value_before_type_cast :value

      def initialize(value, attribute)
        @value     = value
        @attribute = attribute
        super()
      end

      def nil?; value.nil?; end

      def value_for_database
        if attribute.able_to_type_cast?
          attribute.type_cast_for_database(value)
        else
          value
        end
      end

      def hash
        [self.class, value, attribute].hash
      end

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

    class Quoted < Arel::Nodes::Unary # :nodoc:
      alias :value_for_database :value
      alias :value_before_type_cast :value

      def nil?; value.nil?; end

      def infinite?
        value.respond_to?(:infinite?) && value.infinite?
      end
    end

    def self.build_quoted(other, attribute = nil)
      case other
      when Arel::Nodes::Node, Arel::Attributes::Attribute, Arel::Table, Arel::SelectManager, Arel::Nodes::SqlLiteral, ActiveModel::Attribute
        other
      else
        case attribute
        when Arel::Attributes::Attribute
          Casted.new other, attribute
        else
          Quoted.new other
        end
      end
    end
  end
end

Version data entries

77 entries across 74 versions & 7 rubygems

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