| 133 | } |
| 134 | |
| 135 | IntVal IcebergFunctions::BucketPartitionTransform(FunctionContext* ctx, |
| 136 | const IntVal& input, const IntVal& width) { |
| 137 | return BucketPartitionTransformNumericImpl(ctx, input, width); |
| 138 | } |
| 139 | |
| 140 | IntVal IcebergFunctions::BucketPartitionTransform(FunctionContext* ctx, |
| 141 | const BigIntVal& input, const IntVal& width) { |
nothing calls this directly
no test coverage detected