| 415 | } |
| 416 | |
| 417 | type cachedResolverResult struct { |
| 418 | data []byte |
| 419 | meta map[string]any |
| 420 | schema *runtimev1.StructType |
| 421 | |
| 422 | // Iterator fields. Should only be populated on short-lived copies obtained via copy(). |
| 423 | rows []map[string]any |
| 424 | idx int |
| 425 | } |
| 426 | |
| 427 | var _ ResolverResult = &cachedResolverResult{} |
| 428 |
nothing calls this directly
no outgoing calls
no test coverage detected