Actions
Task #92071
closedDatabaseRecordList: Drop unnecessary DB-Query for each table
Start date:
2020-08-22
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
For each TCA table a query to determine if a result exists is made.
It could have been some kind of performance optimization, but it results in an additional query for each table with records in place.
Such optimizations should be done in the getTable method by using the already existing query to count the number of records for one table. Therefore, the query to the get the result set is only executed if at minimum one record exists.
Actions