Closed
Description
Running a trace against a CSV streaming export with the new _trace=1
feature from #1351 shows that the following code is executing a select count(*) from table
for every page of results returned:
datasette/datasette/views/table.py
Lines 700 to 705 in d1d06ac
This is inefficient - a new ?_nocount=1
option would let us disable this count in the same way as #1349:
datasette/datasette/views/base.py
Lines 264 to 276 in d1d06ac