MCPcopy Create free account
hub / github.com/brimdata/super / idsToStrings

Function idsToStrings

compiler/semantic/sql.go:429–435  ·  view source on GitHub ↗
(ids []*ast.ID)

Source from the content-addressed store, hash-verified

427}
428
429func 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
437func (t *translator) sqlQueryBody(query ast.SQLQueryBody, demand []ast.Expr, seq sem.Seq, pipeType super.Type) (sem.Seq, tableScope) {
438 switch query := query.(type) {

Callers 3

mapColumnsFunction · 0.85
sqlJoinMethod · 0.85
resolveFixedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected