aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2019-10-26 18:56:12 +0000
committerdrh <drh@noemail.net>2019-10-26 18:56:12 +0000
commitc34f05cca799f39e881809aac9d9c8d5d47af4fb (patch)
treec4820d2640e7746ccca4dd4b98c452c9fad508f7 /src
parenta88c8c1ae4f6e44f52096f0f17203dc20f8bb900 (diff)
downloadsqlite-c34f05cca799f39e881809aac9d9c8d5d47af4fb.tar.gz
sqlite-c34f05cca799f39e881809aac9d9c8d5d47af4fb.zip
Remove redundant code resulting from a merge error on the previous check-in.
FossilOrigin-Name: 713fe86b8c9f3c9ef8af952019e99ba2f4741326226264de6a66baaeb1803d2a
Diffstat (limited to 'src')
-rw-r--r--src/insert.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/insert.c b/src/insert.c
index afec78b46..806e28513 100644
--- a/src/insert.c
+++ b/src/insert.c
@@ -1497,8 +1497,6 @@ void sqlite3GenerateConstraintChecks(
/* Don't bother checking for NOT NULL on columns that do not change */
continue;
}
- onError = pTab->aCol[i].notNull;
- if( onError==OE_None ) continue; /* This column is allowed to be NULL */
if( overrideError!=OE_Default ){
onError = overrideError;
}else if( onError==OE_Default ){