method

visit_Arel_Attributes_Attribute

v6.1.3.1 - Show latest stable - Class: Arel::Visitors::ToSql
visit_Arel_Attributes_Attribute(o, collector)
private

No documentation available.

# File activerecord/lib/arel/visitors/to_sql.rb, line 688
        def visit_Arel_Attributes_Attribute(o, collector)
          join_name = o.relation.table_alias || o.relation.name
          collector << quote_table_name(join_name) << "." << quote_column_name(o.name)
        end