[Swift-commit] r2982 - provenancedb

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Tue Jun 30 05:41:17 CDT 2009


Author: benc
Date: 2009-06-30 05:41:15 -0500 (Tue, 30 Jun 2009)
New Revision: 2982

Modified:
   provenancedb/prov-to-sql.sh
Log:
insert of values into executes table has extra thread field that should
not be there

Modified: provenancedb/prov-to-sql.sh
===================================================================
--- provenancedb/prov-to-sql.sh	2009-06-25 13:08:16 UTC (rev 2981)
+++ provenancedb/prov-to-sql.sh	2009-06-30 10:41:15 UTC (rev 2982)
@@ -9,7 +9,7 @@
 
 rm -f tmp-import.sql
 
-while read time duration thread endstate app scratch; do
+while read time duration thread localthread endstate app scratch; do
   echo "INSERT INTO processes (id, type) VALUES ('$thread', 'execute');" >> tmp-import.sql
   echo "INSERT INTO executes (id, starttime, duration, finalstate, app, scratch) VALUES ('$thread', $time, $duration, '$endstate', '$app', '$scratch');" >> tmp-import.sql
 done < execute.global.event




More information about the Swift-commit mailing list