Flowdock
method

arel_column

Importance_0
v6.0.0 - 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 1189
      def arel_column(field)
        field = klass.attribute_aliases[field] || field
        from = from_clause.name || from_clause.value

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