(in []ast.SortExpr)
| 511 | } |
| 512 | |
| 513 | func exprsFromSortExprs(in []ast.SortExpr) []ast.Expr { |
| 514 | var out []ast.Expr |
| 515 | for _, e := range in { |
| 516 | out = append(out, e.Expr) |
| 517 | } |
| 518 | return out |
| 519 | } |
| 520 | |
| 521 | func (t *translator) orderBy(op *ast.SQLOrderBy, scope relScope, seq sem.Seq, inType super.Type) sem.Seq { |
| 522 | save := t.scope.sql |