If I have a CSV file that has say 100,000 records and I have this query:
LOAD CSV WITH HEADERS FROM 'http://myUrlPath/file1.csv' AS row
RETURN * LIMIT 5
Under the hood does LOAD CSV open the file and get ALL 100,000 rows of data or does it only open then read lines until limit then close the connection?
Does it behave the same with a file:/// source?
Thanks,
Mike French