Heya,
Our legacy ETL tool has the ability to do a “stable sort” and I am trying to fgure out if Clover has the same.
For example, if I have a set of data:
PCL,Owner
2,Fred
1, Mary
2,Joe
1,Stan
and I tell it to “stable sort” on pcl, it will always sort as:
PCL,Owner
1, Mary
1,Stan
2,Fred
2,Joe
That is, the sorted set always keeps the raw row order within the set, so you would never end up with a sorted set like:
PCL,Owner
1,Stan
1, Mary
2,Fred
2,Joe
because the “Mary” row came before the “Stan” row in the raw input. We are using the EXT_SORT node - does this perform a “stable sort” or could the order within the sorted rows vary?
Thanks,
Anna