We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcad1d6 commit ec36743Copy full SHA for ec36743
datafusion/functions/src/math/floor.rs
@@ -230,6 +230,8 @@ impl ScalarUDFImpl for FloorFunc {
230
231
// Compute lower bound (N) and upper bound (N + 1) using helper functions
232
let Some((lower, upper)) = (match lit_value {
233
+ // Decimal types should be supported and tracked in
234
+ // https://github.com/apache/datafusion/issues/20080
235
// Floating-point types
236
ScalarValue::Float64(Some(n)) => float_preimage_bounds(*n).map(|(lo, hi)| {
237
(
0 commit comments