mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Minor code simplification in the code generator for PRAGMA integrity check.
FossilOrigin-Name: a3b9c7a6c9be5c78a93e5125f16237d2d84b977eca81f527af0198e96435a995
This commit is contained in:
@@ -1796,9 +1796,7 @@ void sqlite3Pragma(
|
||||
}
|
||||
sqlite3VdbeJumpHere(v, jmp2);
|
||||
}
|
||||
if( (pTab->tabFlags & TF_Strict)!=0
|
||||
&& pCol->eCType!=COLTYPE_ANY
|
||||
){
|
||||
if( bStrict && pCol->eCType!=COLTYPE_ANY ){
|
||||
jmp2 = sqlite3VdbeAddOp3(v, OP_IsNullOrType, 3, 0,
|
||||
sqlite3StdTypeMap[pCol->eCType-1]);
|
||||
VdbeCoverage(v);
|
||||
|
||||
Reference in New Issue
Block a user