(blocks []*bucketindex.Block)
| 693 | } |
| 694 | |
| 695 | func parquetConsistencyCheckError(blocks []*bucketindex.Block) error { |
| 696 | return fmt.Errorf("consistency check failed because some blocks were not available as parquet files: %s", strings.Join(convertBlockULIDToString(blocks), " ")) |
| 697 | } |
| 698 | |
| 699 | func convertBlockULIDToString(blocks []*bucketindex.Block) []string { |
| 700 | res := make([]string, len(blocks)) |
no test coverage detected