@@ -30,13 +30,13 @@ use crate::aggregates::AggregateFunctionRef;
30
30
use crate :: aggregates:: StateAddr ;
31
31
32
32
#[ derive( Clone ) ]
33
- pub struct AggregateNullVariadicAdaptor < const NULLABLE_RESULT : bool , const STKIP_NULL : bool > {
33
+ pub struct AggregateNullVariadicAdaptor < const NULLABLE_RESULT : bool , const SKIP_NULL : bool > {
34
34
nested : AggregateFunctionRef ,
35
35
size_of_data : usize ,
36
36
}
37
37
38
- impl < const NULLABLE_RESULT : bool , const STKIP_NULL : bool >
39
- AggregateNullVariadicAdaptor < NULLABLE_RESULT , STKIP_NULL >
38
+ impl < const NULLABLE_RESULT : bool , const SKIP_NULL : bool >
39
+ AggregateNullVariadicAdaptor < NULLABLE_RESULT , SKIP_NULL >
40
40
{
41
41
pub fn create ( nested : AggregateFunctionRef ) -> AggregateFunctionRef {
42
42
let size_of_data = if NULLABLE_RESULT {
@@ -78,8 +78,8 @@ impl<const NULLABLE_RESULT: bool, const STKIP_NULL: bool>
78
78
}
79
79
}
80
80
81
- impl < const NULLABLE_RESULT : bool , const STKIP_NULL : bool > AggregateFunction
82
- for AggregateNullVariadicAdaptor < NULLABLE_RESULT , STKIP_NULL >
81
+ impl < const NULLABLE_RESULT : bool , const SKIP_NULL : bool > AggregateFunction
82
+ for AggregateNullVariadicAdaptor < NULLABLE_RESULT , SKIP_NULL >
83
83
{
84
84
fn name ( & self ) -> & str {
85
85
"AggregateNullVariadicAdaptor"
@@ -246,8 +246,8 @@ impl<const NULLABLE_RESULT: bool, const STKIP_NULL: bool> AggregateFunction
246
246
}
247
247
}
248
248
249
- impl < const NULLABLE_RESULT : bool , const STKIP_NULL : bool > fmt:: Display
250
- for AggregateNullVariadicAdaptor < NULLABLE_RESULT , STKIP_NULL >
249
+ impl < const NULLABLE_RESULT : bool , const SKIP_NULL : bool > fmt:: Display
250
+ for AggregateNullVariadicAdaptor < NULLABLE_RESULT , SKIP_NULL >
251
251
{
252
252
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
253
253
write ! ( f, "AggregateNullVariadicAdaptor" )
0 commit comments