mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Fix to remove skip & limit from filter before doing count
This commit is contained in:
@ -308,7 +308,7 @@ public class MemoryRecordStore
|
||||
{
|
||||
QueryInput queryInput = new QueryInput();
|
||||
queryInput.setTableName(input.getTableName());
|
||||
queryInput.setFilter(input.getFilter());
|
||||
queryInput.setFilter(input.getFilter().clone().withSkip(null).withLimit(null));
|
||||
List<QRecord> queryResult = query(queryInput);
|
||||
|
||||
return (queryResult.size());
|
||||
|
Reference in New Issue
Block a user