You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The IndexedTable sink should accept iterator of Pairs of NamedTuples, and then use the columns from the key as index columns and the columns from the value as data columns. This would enable e.g. this query:
@from i in df begin@select {i.a, i.b} => {i.c, i.d}
@collect IndexedTable
end
Here the index columns would be a and b, and the data columns c and d.
The text was updated successfully, but these errors were encountered:
The
IndexedTable
sink should accept iterator ofPair
s ofNamedTuple
s, and then use the columns from the key as index columns and the columns from the value as data columns. This would enable e.g. this query:Here the index columns would be
a
andb
, and the data columnsc
andd
.The text was updated successfully, but these errors were encountered: