todatasubset() not returning the correct total count when batch size is 0

Certified Lead Developer

So I appended 2 List of Dictionaries in a local variable and then did a todatasubset() on this local variable with a batch size of -1 and the total count was correct. When I changed the batch size to 0, the total count returned 0 when I was expecting it to return the same total count as when I passed in -1 for the batch size. Any ideas on why this is happening or what I'm doing wrong?

  Discussion posts and replies are publicly visible

Parents
  • I had a similar issue while dealing with a view that was due to duplicates being present in the data. Because of the way the view was set up, it was possible for duplicate entries to occur.

    When used with the a!pagingInfo with a batchSize of -1, the query to the view always returned the correct count equal to what we had in the database. When we switched the batchSize with a value >= 0, we saw that the total count shrunk by a few values. Putting a DISTINCT on the view gave us the same count as what came back in that case so that's what led us to suspect it was because of duplicates. I think either the query of pagingInfo had some functionality that automatically removes duplicates that doesn't seem clear from the documentation.

    I would check if with the data you're using any of the values are duplicates and if the difference between the -1 and 0 batch sizes is the number of those duplicates.

Reply
  • I had a similar issue while dealing with a view that was due to duplicates being present in the data. Because of the way the view was set up, it was possible for duplicate entries to occur.

    When used with the a!pagingInfo with a batchSize of -1, the query to the view always returned the correct count equal to what we had in the database. When we switched the batchSize with a value >= 0, we saw that the total count shrunk by a few values. Putting a DISTINCT on the view gave us the same count as what came back in that case so that's what led us to suspect it was because of duplicates. I think either the query of pagingInfo had some functionality that automatically removes duplicates that doesn't seem clear from the documentation.

    I would check if with the data you're using any of the values are duplicates and if the difference between the -1 and 0 batch sizes is the number of those duplicates.

Children
No Data