Correct not null error message

This commit is contained in:
Anton Harniakou
2025-06-06 12:56:14 +03:00
parent 5cd0614ac2
commit a83ee73f20

View File

@@ -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
)));
}