| 118 | |
| 119 | template <typename DType> |
| 120 | Status FuzzReadTypedColumnIndex(const TypedColumnIndex<DType>* index) { |
| 121 | index->min_values(); |
| 122 | index->max_values(); |
| 123 | return Status::OK(); |
| 124 | } |
| 125 | |
| 126 | Status FuzzReadColumnIndex(const ColumnIndex* index, const ColumnDescriptor* descr) { |
| 127 | Status st; |
no test coverage detected