WithSpanOnlyFetch sets whether to use the span-only fetch path. When not set the default is used, and this may be overridden by the query hint.
(v bool)
| 41 | // WithSpanOnlyFetch sets whether to use the span-only fetch path. When not set the default is used, and |
| 42 | // this may be overridden by the query hint. |
| 43 | func WithSpanOnlyFetch(v bool) CompileOption { |
| 44 | return func(o *compileOptions) { |
| 45 | o.spanOnlyFetch = &v |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // WithTimeOverlapCutoff sets the overlap threshold (0 to 1) for trace-level timestamp filtering. When not |
| 50 | // set the default value is used. |
no outgoing calls