Closed vividsnow closed 2 years ago
Hello
Consider input file with 1 billion records:
my $batch = $csv->getline_all ($fh, 0, 1e6) will return all data my $batch = $csv->getline_all ($fh, 0, 1000000) will return 1000000 recs
my $batch = $csv->getline_all ($fh, 0, 1e6)
my $batch = $csv->getline_all ($fh, 0, 1000000)
Thanks for the report. Fixed in 9d094d212382bc36702b73
Thank you!
Hello
Consider input file with 1 billion records:
my $batch = $csv->getline_all ($fh, 0, 1e6)
will return all datamy $batch = $csv->getline_all ($fh, 0, 1000000)
will return 1000000 recs