Mechanism for register_output_renderer hooks to access full count #2186
Open
Description
The cause of this bug:
Is that datasette-export-notebook
was consulting data["filtered_table_rows_count"]
in the render output plugin function in order to show the total number of rows that would be exported.
That field is no longer available by default - the "count"
field is only available if ?_extra=count
was passed.
It would be useful if plugins like this could access the total count on demand, should they need to.