F138 - Failure Feedback Forum
This looks correct as it has b as the subview column
% view {a b c} def {1 a b 2 c d 3 e f} | group {a c} g | structdesc
a:S,c:S,g[b:S]
This looks wrong as b should again be the subview column
% view {a b c} def {1 a b 2 c d 3 e f} | group {c a} g | structdesc
c:S,a:S,g[a:S]
Good catch, thanks. Grouping was using OmitColumn which assumed its column input list is always sorted.
Fixed by using implementing OmitColumn slightly differently. In Darcs. Lemme know if I should update ratcl.vfs as well.
Imported