Skip to content

Commit 693006a

Browse files
authored
fix: remove unused generateRealisticRecords (#88)
1 parent 22ff0a5 commit 693006a

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

test_helpers_test.go

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -275,18 +275,3 @@ func generateEscapedQuotesRecords(numRows, numCols int) [][]string {
275275
}
276276
return records
277277
}
278-
279-
// generateRealisticRecords returns records matching generateRealisticCSV.
280-
func generateRealisticRecords(numRows, _ int) [][]string {
281-
template := []string{
282-
"Alice, Smith", "30", "Tokyo, JP", "engineer",
283-
"100", "Japan, Asia", "active", "42", "New York, US", "2024",
284-
}
285-
records := make([][]string, numRows)
286-
for i := range records {
287-
row := make([]string, len(template))
288-
copy(row, template)
289-
records[i] = row
290-
}
291-
return records
292-
}

0 commit comments

Comments
 (0)