method

arel_column

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::QueryMethods
arel_column(field) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/query_methods.rb, line 1068
      def arel_column(field)
        field = klass.attribute_alias(field) if klass.attribute_alias?(field)
        from = from_clause.name || from_clause.value

        if klass.columns_hash.key?(field) && (!from || table_name_matches?(from))
          arel_attribute(field)
        else
          yield
        end
      end
Register or log in to add new notes.