Remove code dealing with old file formats. (CVS 1354)

FossilOrigin-Name: dfde112116b982017a5516590ff1780e8aa519ce
diff --git a/src/insert.c b/src/insert.c
index c8a13ff..06785ed 100644
--- a/src/insert.c
+++ b/src/insert.c
@@ -12,7 +12,7 @@
 ** This file contains C code routines that are called by the parser
 ** to handle INSERT statements in SQLite.
 **
-** $Id: insert.c,v 1.96 2004/05/10 10:34:40 danielk1977 Exp $
+** $Id: insert.c,v 1.97 2004/05/11 07:11:53 danielk1977 Exp $
 */
 #include "sqliteInt.h"
 
@@ -773,7 +773,7 @@
       }
     }
     jumpInst1 = sqlite3VdbeAddOp(v, OP_MakeIdxKey, pIdx->nColumn, 0);
-    if( pParse->db->file_format>=4 ) sqlite3AddIdxKeyType(v, pIdx);
+    sqlite3AddIdxKeyType(v, pIdx);
 
     /* Find out what action to take in case there is an indexing conflict */
     onError = pIdx->onError;