From a83ee73f201e26b9f40395211b900b44e108deac Mon Sep 17 00:00:00 2001 From: Anton Harniakou Date: Fri, 6 Jun 2025 12:56:14 +0300 Subject: [PATCH] Correct not null error message --- core/vdbe/execute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vdbe/execute.rs b/core/vdbe/execute.rs index b64d000f5..5e1b2452c 100644 --- a/core/vdbe/execute.rs +++ b/core/vdbe/execute.rs @@ -1619,7 +1619,7 @@ pub fn halt( } SQLITE_CONSTRAINT_NOTNULL => { return Err(LimboError::Constraint(format!( - "NOTNULL constraint failed: {} (19)", + "NOT NULL constraint failed: {} (19)", description ))); }