Skip to content

Commit eb8ccb9

Browse files
committed
more explicit
1 parent 160f351 commit eb8ccb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/locationtech/rasterframes/expressions/aggregates/ApproxCellQuantilesAggregate.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ case class ApproxCellQuantilesAggregate(probabilities: Seq[Double], relativeErro
7171

7272
def evaluate(buffer: Row): Seq[Double] = {
7373
val summaries = buffer.getStruct(0).as[QuantileSummaries]
74-
probabilities.flatMap(summaries.query)
74+
probabilities.flatMap(quantile => summaries.query(quantile))
7575
}
7676
}
7777

0 commit comments

Comments
 (0)