SPARQL: Makes average function works with yearMonthDuration and dayTimeDuration

pull/509/head
Tpt 1 year ago committed by Thomas Tanon
parent d992fb7545
commit 7b9e9f9694
  1. 10
      lib/src/sparql/eval.rs

@ -1087,7 +1087,9 @@ impl SimpleEvaluator {
NumericBinaryOperands::TimeDayTimeDuration(v1, v2) => {
Some(v1.checked_add_day_time_duration(v2)?.into())
}
_ => None,
NumericBinaryOperands::DateTime(_, _)
| NumericBinaryOperands::Time(_, _)
| NumericBinaryOperands::Date(_, _) => None,
},
)
}
@ -4509,6 +4511,12 @@ impl Accumulator for SumAccumulator {
NumericBinaryOperands::Integer(v1, v2) => v1.checked_add(v2).map(Into::into),
NumericBinaryOperands::Decimal(v1, v2) => v1.checked_add(v2).map(Into::into),
NumericBinaryOperands::Duration(v1, v2) => v1.checked_add(v2).map(Into::into),
NumericBinaryOperands::YearMonthDuration(v1, v2) => {
v1.checked_add(v2).map(Into::into)
}
NumericBinaryOperands::DayTimeDuration(v1, v2) => {
v1.checked_add(v2).map(Into::into)
}
_ => None,
};
} else {

Loading…
Cancel
Save