(t *testing.T)
| 432 | } |
| 433 | |
| 434 | func TestParquetRowSizeEstimate(t *testing.T) { |
| 435 | // use this test to parse actual Parquet files and compare the two methods of estimating row size |
| 436 | s := []string{} |
| 437 | |
| 438 | for _, s := range s { |
| 439 | estimateRowSize(t, s) |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | func estimateRowSize(t *testing.T, name string) { |
| 444 | f, err := os.OpenFile(name, os.O_RDONLY, 0o600) |
nothing calls this directly
no test coverage detected