func()

in go/rows.go [229:236]


func (r *Rows) Close() error {
	if r.ResultOutput != nil && r.ResultOutput.NextToken != nil {
		r.tracer.Log(WarnLevel, "rows close prematurely, queryID: "+r.queryID)
		r.ResultOutput = nil
	}
	r.reachedLastPage = true
	return nil
}