(h *Hints)
| 110 | } |
| 111 | |
| 112 | func (r *RootExpr) withHints(h *Hints) *RootExpr { |
| 113 | r.Hints = h |
| 114 | return r |
| 115 | } |
| 116 | |
| 117 | // IsNoop detects trivial noop queries like {false} which never return |
| 118 | // results and can be used to exit early. |
no outgoing calls