(ids []*ast.ID)
| 427 | } |
| 428 | |
| 429 | func idsToStrings(ids []*ast.ID) []string { |
| 430 | out := make([]string, 0, len(ids)) |
| 431 | for _, id := range ids { |
| 432 | out = append(out, id.Name) |
| 433 | } |
| 434 | return out |
| 435 | } |
| 436 | |
| 437 | func (t *translator) sqlQueryBody(query ast.SQLQueryBody, demand []ast.Expr, seq sem.Seq, pipeType super.Type) (sem.Seq, tableScope) { |
| 438 | switch query := query.(type) { |
no outgoing calls
no test coverage detected