diff --git a/pgrx/src/datum/interval.rs b/pgrx/src/datum/interval.rs index 00c956a02..576dcaa10 100644 --- a/pgrx/src/datum/interval.rs +++ b/pgrx/src/datum/interval.rs @@ -170,13 +170,6 @@ impl Interval { self.0.month < 0 || self.0.day < 0 || self.0.time < 0 } - /// Postgres defines intervals as bounded - #[deprecated(since = "0.10.0", note = "consider using `true`")] - pub fn is_finite(&self) -> bool { - // Yes, really. - true - } - /// Truncate [`Interval`] to specified units pub fn truncate(self, units: DateTimeParts) -> Self { unsafe {