We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2169068 commit 4d409d3Copy full SHA for 4d409d3
1 file changed
src/DataFrame/Internal/Column.hs
@@ -581,7 +581,7 @@ foldl1DirectGroups ::
581
VU.Vector Int ->
582
Either DataFrameException Column
583
foldl1DirectGroups f col valueIndices offsets
584
- | VU.length offsets <= 1 = pure $ BoxedColumn @T.Text VB.empty
+ | VU.length offsets <= 1 = pure $ fromVector @a VB.empty
585
| otherwise = case col of
586
UnboxedColumn (vec :: VU.Vector d) -> UnboxedColumn <$> foldl1Worker vec
587
BoxedColumn (vec :: VB.Vector d) -> BoxedColumn <$> foldl1Worker vec
0 commit comments