We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5dc4c8b + 27bd972 commit 54059d3Copy full SHA for 54059d3
src/query/functions/src/aggregates/aggregate_quantile_cont.rs
@@ -230,6 +230,15 @@ where T: Number + AsPrimitive<f64>
230
let state = place.get::<QuantileState>();
231
state.merge_result(builder, self.levels.clone())
232
}
233
+
234
+ fn need_manual_drop_state(&self) -> bool {
235
+ true
236
+ }
237
238
+ unsafe fn drop_state(&self, place: StateAddr) {
239
+ let state = place.get::<QuantileState>();
240
+ std::ptr::drop_in_place(state);
241
242
243
244
impl<T> AggregateQuantileContFunction<T>
0 commit comments