(fn string)
| 245 | } |
| 246 | |
| 247 | func (s *CompressedInput) ParseFile(fn string) { |
| 248 | if strings.HasSuffix(fn, ".zst") || strings.HasSuffix(fn, ".zstd") { |
| 249 | s.parseFileTyped(fn, zstdCompression) |
| 250 | } else { |
| 251 | s.parseFileTyped(fn, gzipCompression) |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | func (s *CompressedInput) parseFileTyped(fn string, comp compressionType) { |
| 256 |
no test coverage detected