We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cf823 commit 19d3ac4Copy full SHA for 19d3ac4
src/Data/DataFrame/Operations.hs
@@ -597,7 +597,7 @@ reduceBy name f df = case name `MS.lookup` DI.columnIndices df of
597
Just ((GroupedUnboxedColumn (column :: Vector (VU.Vector a')))) -> case testEquality (typeRep @a) (typeRep @a') of
598
Just Refl -> addColumn' name (Just $ DI.toColumn' (VG.map f column)) df
599
Nothing -> error "Type error"
600
- Nothing -> error "Column is ungrouped"
+ _ -> error "Column is ungrouped"
601
602
reduceByAgg :: T.Text
603
-> Aggregation
0 commit comments