Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid loading file into memory in read_csv
agate.from_csv reads the entire csv file into memory _twice_ before actually reating a Table. This PR keeps things as iterators so that the file is only loaded line by line as we create the table, unless `sniff_limit` is None in which case the file is loaded into memory upfront.
- Loading branch information