It seems that when trying to read the first N rows, Laurelin materializes the entire table before applying the LIMIT, e.g.:
SELECT * FROM the-name-i-give-to-my-df LIMIT 10
Are there plans to push down the LIMIT to read less from disk? I would expect this query to be very fast even with a very large file.
Thanks!
It seems that when trying to read the first N rows, Laurelin materializes the entire table before applying the LIMIT, e.g.:
SELECT * FROM the-name-i-give-to-my-df LIMIT 10
Are there plans to push down the LIMIT to read less from disk? I would expect this query to be very fast even with a very large file.
Thanks!