# File lib/active_record/attribute_methods/read.rb, line 98
      def read_attribute(attr_name)
        if respond_to? "_#{attr_name}"
          send "_#{attr_name}" if @attributes.has_key?(attr_name.to_s)
        else
          _read_attribute attr_name
        end
      end