I have a resource with 5 million rows in an InnoDB table. Nova times out when executing a COUNT(*) query. I imagine this is used in pagination. Is there a way to disable that behavior (just have a NEXT PREV in pagination) for only one particular resource?
The query it times out on is:
select count(*) as aggregate from `queue_articles`
I expect it to display the resource as a Nova resource index.