SimpleColumnStore is a read-only fact store backed by a simple column file.
| 80 | |
| 81 | // SimpleColumnStore is a read-only fact store backed by a simple column file. |
| 82 | type SimpleColumnStore struct { |
| 83 | input func() (io.ReadCloser, error) |
| 84 | predicates []ast.PredicateSym |
| 85 | predicateFactCount []int |
| 86 | } |
| 87 | |
| 88 | var _ ReadOnlyFactStore = (*SimpleColumnStore)(nil) |
| 89 |
nothing calls this directly
no outgoing calls
no test coverage detected