Hi, I was wondering if the sort algorithm for lists is stable.
If I pull from a list without query, I get results in FIFO order. If I sort the list, e.g. ORDER BY [Priority], are all results with the same priority still returned in list push order?
We noticed that for table queries this is no longer the case, from the release notes:
Because of performance improvements to query(), the row order is not guaranteed unless using an ORDER BY statement
Side question: does any ORDER BY force the results to have row order as secondary layer, or does it need to be ORDER BY ROW_NUMBER, specifically ?