Skip to content

Commit

Permalink
[FEAT] enable decimal between (Eventual-Inc#3154)
Browse files Browse the repository at this point in the history
* Enables Between for Decimal128
  • Loading branch information
samster25 authored and sagiahrac committed Nov 4, 2024
1 parent 9cd12c7 commit 051793d
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/daft-core/src/array/ops/between.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ use common_error::{DaftError, DaftResult};
use super::{DaftBetween, DaftCompare, DaftLogical};
use crate::{
array::DataArray,
datatypes::{BooleanArray, DaftNumericType},
datatypes::{BooleanArray, DaftPrimitiveType},
};

impl<T> DaftBetween<&Self, &Self> for DataArray<T>
where
T: DaftNumericType,
T: DaftPrimitiveType,
{
type Output = DaftResult<BooleanArray>;

Expand Down
25 changes: 25 additions & 0 deletions src/daft-core/src/datatypes/matching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,31 @@ macro_rules! with_match_numeric_daft_types {(
}
})}

#[macro_export]
macro_rules! with_match_primitive_daft_types {(
$key_type:expr, | $_:tt $T:ident | $($body:tt)*
) => ({
macro_rules! __with_ty__ {( $_ $T:ident ) => ( $($body)* )}
use $crate::datatypes::DataType::*;
use $crate::datatypes::*;

match $key_type {
Int8 => __with_ty__! { Int8Type },
Int16 => __with_ty__! { Int16Type },
Int32 => __with_ty__! { Int32Type },
Int64 => __with_ty__! { Int64Type },
UInt8 => __with_ty__! { UInt8Type },
UInt16 => __with_ty__! { UInt16Type },
UInt32 => __with_ty__! { UInt32Type },
UInt64 => __with_ty__! { UInt64Type },
// Float16 => __with_ty__! { Float16Type },
Float32 => __with_ty__! { Float32Type },
Float64 => __with_ty__! { Float64Type },
Decimal128(..) => __with_ty__! { Decimal128Type },
_ => panic!("{:?} not implemented", $key_type)
}
})}

#[macro_export]
macro_rules! with_match_integer_daft_types {(
$key_type:expr, | $_:tt $T:ident | $($body:tt)*
Expand Down
6 changes: 3 additions & 3 deletions src/daft-core/src/series/ops/between.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
array::ops::DaftBetween,
datatypes::{BooleanArray, DataType, InferDataType},
series::{IntoSeries, Series},
with_match_numeric_daft_types,
with_match_primitive_daft_types,
};

impl Series {
Expand All @@ -31,8 +31,8 @@ impl Series {
.clone()
.into_series()),
DataType::Null => Ok(Self::full_null(self.name(), &DataType::Boolean, self.len())),
ref v if v.is_numeric() => {
with_match_numeric_daft_types!(comp_type, |$T| {
ref v if v.is_primitive() => {
with_match_primitive_daft_types!(comp_type, |$T| {
let casted_value = it_value.cast(&comp_type)?;
let casted_lower = it_lower.cast(&comp_type)?;
let casted_upper = it_upper.cast(&comp_type)?;
Expand Down
20 changes: 20 additions & 0 deletions src/daft-schema/src/dtype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,26 @@ impl DataType {
}
}

#[inline]
pub fn is_primitive(&self) -> bool {
match self {
Self::Int8
| Self::Int16
| Self::Int32
| Self::Int64
| Self::UInt8
| Self::UInt16
| Self::UInt32
| Self::UInt64
// DataType::Float16
| Self::Float32
| Self::Float64
| Self::Decimal128(..) => true,
Self::Extension(_, inner, _) => inner.is_primitive(),
_ => false
}
}

#[inline]
pub fn assert_is_numeric(&self) -> DaftResult<()> {
if self.is_numeric() {
Expand Down
36 changes: 36 additions & 0 deletions tests/table/test_between.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import datetime
from decimal import Decimal

import pytest

Expand All @@ -12,6 +13,27 @@
pytest.param([1, 2, 3, 4], 1, 2, [True, True, False, False], id="IntIntInt"),
pytest.param([1, 2, 3, 4], 1.0, 2.0, [True, True, False, False], id="IntFloatFloat"),
pytest.param([1, 2, 3, 4], 1, 2.0, [True, True, False, False], id="IntIntFloat"),
pytest.param(
[Decimal("1.0"), Decimal("2.0"), Decimal("3.0"), Decimal("4.0")],
Decimal("1.0"),
Decimal("2.0"),
[True, True, False, False],
id="DecimalDecimalDecimal",
),
pytest.param(
[Decimal("1.0"), Decimal("2.0"), Decimal("3.0"), Decimal("4.0")],
1,
Decimal("2.0"),
[True, True, False, False],
id="DecimalIntDecimal",
),
pytest.param(
[Decimal("1.0"), Decimal("2.0"), Decimal("3.0"), Decimal("4.0")],
1.0,
2.0,
[True, True, False, False],
id="DecimalFloatFloat",
),
pytest.param([1.0, 2.0, 3.0, 4.0], 1.0, 2.0, [True, True, False, False], id="FloatFloatFloat"),
pytest.param([1.0, 2.0, 3.0, 4.0], 1, 2, [True, True, False, False], id="FloatIntInt"),
pytest.param([1.0, 2.0, 3.0, 4.0], 1, 2.0, [True, True, False, False], id="FloatIntFloat"),
Expand Down Expand Up @@ -43,6 +65,20 @@ def test_table_expr_between_scalars(value, lower, upper, expected) -> None:
pytest.param(
[1, 2, 3, 4], [1.0, 1.0, 1.0, 1.0], [2.0, 2.0, 2.0, 2.0], [True, True, False, False], id="IntFloatFloat"
),
pytest.param(
[Decimal("1.0"), Decimal("2.0"), Decimal("3.0"), Decimal("4.0")],
[Decimal("1.0"), Decimal("1.0"), Decimal("1.0"), Decimal("1.0")],
[Decimal("2.0"), Decimal("2.0"), Decimal("2.0"), Decimal("2.0")],
[True, True, False, False],
id="DecimalDecimalDecimal",
),
pytest.param(
[Decimal("1.0"), Decimal("2.0"), Decimal("3.0"), Decimal("4.0")],
[1, 1, 1, 1],
[2.0, 2.0, 2.0, 2.0],
[True, True, False, False],
id="DecimalIntFloat",
),
pytest.param([1, 2, 3, 4], [1, 1, 1, 1], [2.0, 2.0, 2.0, 2.0], [True, True, False, False], id="IntIntFloat"),
pytest.param(
[None, None, None, None],
Expand Down

0 comments on commit 051793d

Please sign in to comment.