(eval Evaluator, o order.Which, n order.Nulls)
| 20 | } |
| 21 | |
| 22 | func NewSortExpr(eval Evaluator, o order.Which, n order.Nulls) SortExpr { |
| 23 | return SortExpr{eval, o, n} |
| 24 | } |
| 25 | |
| 26 | // nullsMax reports whether s treats null as the maximum value. |
| 27 | func (s *SortExpr) nullsMax() bool { |
no outgoing calls