From 409297cfddfbda07eaa3e914bbb8f8836ff9f639 Mon Sep 17 00:00:00 2001 From: pedrocarlo Date: Wed, 19 Feb 2025 00:05:56 -0300 Subject: [PATCH] remove comment --- core/vdbe/mod.rs | 1 - 1 file changed, 1 deletion(-) 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, } }