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