# File lib/arel/algebra/relations/row.rb, line 14
    def slice(*attributes)
      Row.new(relation, attributes.map do |attribute|
        # FIXME TESTME method chaining
        tuple[relation.relation.position_of(attribute)]
      end)
    end