# File lib/arel/algebra/relations/operations/project.rb, line 5
    def initialize(relation, projections)
      super(relation)
      @projections = projections.map { |p| p.bind(relation) }
      @christener = Sql::Christener.new
      @attributes = Header.new(projections.map { |x| x.bind(self) })
    end