diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index 5c16c7f09..14214b0f0 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -3760,7 +3760,6 @@ fn cast_text_to_numeric(text: &str) -> OwnedValue { CastTextToIntResultCode::TooLargeOrMalformed | CastTextToIntResultCode::SpecialCase, ) => real_cast, (CastTextToRealResultCode::PureInt, CastTextToIntResultCode::Success) => int_cast, - // CastTextToRealResultCode::NotValid => (), _ => real_cast, } }