(t *testing.T)
| 842 | } |
| 843 | |
| 844 | func TestParquetRowSizeEstimate(t *testing.T) { |
| 845 | // use this test to parse actual Parquet files and compare the two methods of estimating row size |
| 846 | s := []string{} |
| 847 | |
| 848 | for _, s := range s { |
| 849 | estimateRowSize(t, s) |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | func estimateRowSize(t *testing.T, name string) { |
| 854 | f, err := os.OpenFile(name, os.O_RDONLY, 0o600) |
nothing calls this directly
no test coverage detected