diff insert.cpp @ 318:c270d9e4659a large_adb

Ammended batchinsert and status to memory map featureFilenameTables, powerFileNameTable and timesFileNameTable for O2_FLAG_LARGE_ADB
author mas01mc
date Tue, 19 Aug 2008 15:50:26 +0000
parents 25572f1bd37f
children a995e5ad999a
line wrap: on
line diff
--- a/insert.cpp	Tue Aug 19 14:38:39 2008 +0000
+++ b/insert.cpp	Tue Aug 19 15:50:26 2008 +0000
@@ -465,16 +465,16 @@
 	INSERT_FILETABLE_STRING(fileTable, thisKey);
 	
 	// Feature Vector fileNames
-	INSERT_FILETABLE_STRING(dbH->dataOffset, thisFile);
+	INSERT_FILETABLE_STRING(featureFileNameTable, thisFile);
 	
 	// Time Stamp fileNames
 	if(usingTimes)
-	  INSERT_FILETABLE_STRING(dbH->timesTableOffset, thisTimesFileName);
+	  INSERT_FILETABLE_STRING(timesFileNameTable, thisTimesFileName);
 
 
 	// Power fileNames
 	if(usingPower)
-	  INSERT_FILETABLE_STRING(dbH->powerTableOffset, thisPowerFileName);
+	  INSERT_FILETABLE_STRING(powerFileNameTable, thisPowerFileName);
 
 	// Increment file count
 	dbH->numFiles++;