Noticed that SQL_CALC_FOUND_ROWS is still used in queries to display form entries.
Found information about deprecated functionality in
dev.mysql.com /doc /refman /8.0/en/information-functions.html
Something to consider for future releases?
Rgrds, Cees van Dongen
The
SQL_CALC_FOUND_ROWS
query modifier and accompanyingFOUND_ROWS()
function are deprecated as of MySQL 8.0.17; expect them to be removed in a future version of MySQL. As a replacement, considering executing your query withLIMIT
, and then a second query with [COUNT(*)
]