This is driving me nuts. Is this a bug, or am I missing something? I think the page size input to a Load Table Object Block returns that many rows of the query and should not impact the sort order. But in my testing that isn’t turning out to be the case -
I built a test instance. The same where clause is run twice. Once with a page size input of 15, once with a page size input of 20, and the two results are matched up in a loop -
EDIT for clarity - As you can see in the results, the objects are not being returned in the same order from the two queries. This doesn’t seem right to me.
[
{
"list15ObjectId": "DDA67824-F8C1-44B1-804A-2E915B44E317",
"list20ObjectId": "DDA67824-F8C1-44B1-804A-2E915B44E317"
},
{
"list15ObjectId": "E56E7DE2-0C19-4F6D-B139-2ECEC15754E0",
"list20ObjectId": "E56E7DE2-0C19-4F6D-B139-2ECEC15754E0"
},
{
"list15ObjectId": "11832FAB-1F66-4FBD-B76E-DA6DC0D72E27",
"list20ObjectId": "ACA755BF-60DE-433C-A481-899337149CD0"
},
{
"list15ObjectId": "F536BF2B-DC72-4A27-864E-2D140235D3CA",
"list20ObjectId": "F536BF2B-DC72-4A27-864E-2D140235D3CA"
},
{
"list15ObjectId": "49725D33-3D14-45FC-92E6-E4E243CB7A8D",
"list20ObjectId": "E40D30DF-20FA-4FD0-A637-CFE049155668"
},
{
"list15ObjectId": "6F3DF907-AD20-4138-97E4-19BDEB38B512",
"list20ObjectId": "E077307E-8D23-4A29-9F7D-1244BD8D4189"
},
{
"list15ObjectId": "850F2791-68AB-46FE-9859-95C3C284B93D",
"list20ObjectId": "D78E06BF-2605-48F6-B2DF-4EEDD4C17180"
},
{
"list15ObjectId": "8D0B0606-2E38-434B-BAA9-D4DC16BA64CF",
"list20ObjectId": "B67B6B13-0C2D-4649-A986-969B061670C4"
},
{
"list15ObjectId": "903EC5B0-DF81-49E6-878D-A4BF9AEDE692",
"list20ObjectId": "B02A6E11-400C-431B-A713-CD3D96B3AB2E"
},
{
"list15ObjectId": "9FD03F3D-A7DF-41C7-AFC3-C4EC99DBDF7E",
"list20ObjectId": "11832FAB-1F66-4FBD-B76E-DA6DC0D72E27"
},
{
"list15ObjectId": "AC817853-1E3E-46D2-B4EE-877FAB9F4D28",
"list20ObjectId": "AC817853-1E3E-46D2-B4EE-877FAB9F4D28"
},
{
"list15ObjectId": "ACA755BF-60DE-433C-A481-899337149CD0",
"list20ObjectId": "9FD03F3D-A7DF-41C7-AFC3-C4EC99DBDF7E"
},
{
"list15ObjectId": "B02A6E11-400C-431B-A713-CD3D96B3AB2E",
"list20ObjectId": "903EC5B0-DF81-49E6-878D-A4BF9AEDE692"
},
{
"list15ObjectId": "B67B6B13-0C2D-4649-A986-969B061670C4",
"list20ObjectId": "8D0B0606-2E38-434B-BAA9-D4DC16BA64CF"
},
{
"list15ObjectId": "D78E06BF-2605-48F6-B2DF-4EEDD4C17180",
"list20ObjectId": "850F2791-68AB-46FE-9859-95C3C284B93D"
}
]
Thoughts?