Diff
Not logged in

Differences From:

File src/checkin.c part of check-in [bd9703dee6] - Fix bad setup of comment for manifest. by aku on 2008-02-02 05:05:01. [view]

To:

File src/checkin.c part of check-in [dfb6ee3bac] - Dropped primary key of temp table __im, record ids are not unique. Scenario: Several empty files. All have the same id, different paths. by aku on 2008-02-02 06:49:40. [view]

@@ -657,10 +657,10 @@
   }
 
   db_begin_transaction();
   db_multi_exec ("CREATE TEMP TABLE __im ("
-		 "rid INTEGER PRIMARY KEY,"
-		 "pathname TEXT NOT NULL)" );
+		 "rid      INTEGER NOT NULL,"
+		 "pathname TEXT    NOT NULL)" );
 
   while (g.argc > 2) {
     /* Check and store ... */
     if (strcmp("-f",   g.argv[2]) &&