(t *testing.T)
| 863 | } |
| 864 | |
| 865 | func TestParquetRowSizeEstimate(t *testing.T) { |
| 866 | // use this test to parse actual Parquet files and compare the two methods of estimating row size |
| 867 | s := []string{} |
| 868 | |
| 869 | for _, s := range s { |
| 870 | estimateRowSize(t, s) |
| 871 | } |
| 872 | } |
| 873 | |
| 874 | func estimateRowSize(t *testing.T, name string) { |
| 875 | f, err := os.OpenFile(name, os.O_RDONLY, 0o600) |
nothing calls this directly
no test coverage detected