I am trying to test a refcursor with multiple unsorted rows. Is there a way to test results_eq without ordering? Or is there a way to order the refcursor after FETCH ALL?
I can get the result with:
SELECT results_eq($$ FETCH ALL FROM ref_cursor $$, $$ VALUES (...), (...) $$);
I am trying to test a
refcursorwith multiple unsorted rows. Is there a way to testresults_eqwithout ordering? Or is there a way to order the refcursor afterFETCH ALL?I can get the result with: