summaryrefslogtreecommitdiff
path: root/update-results-db
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2018-10-30 15:53:28 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2018-10-30 15:53:28 +0000
commite6830504fdbeed9f1d6b6497413f5343b6707021 (patch)
treee0d7a0a559ca41c591b99bf60b8bae0992883b29 /update-results-db
parenta200019f0cd60b96a4868ce35ea52e7475bc302a (diff)
Remove missing expected field from csv.
Diffstat (limited to 'update-results-db')
-rwxr-xr-xupdate-results-db2
1 files changed, 1 insertions, 1 deletions
diff --git a/update-results-db b/update-results-db
index 0ce0676..446dabc 100755
--- a/update-results-db
+++ b/update-results-db
@@ -31,7 +31,7 @@ fi
rm -f $RESULTS_DB
sqlite3 $RESULTS_DB <<EOF
drop table if exists results;
-create table results (timestamp integer, jvm_type text, ngigabytes integer, elapsed_time integer, UNIQUE (timestamp, jvm_type) ON CONFLICT REPLACE);
+create table results (timestamp integer, ngigabytes integer, elapsed_time integer, UNIQUE (timestamp, jvm_type) ON CONFLICT REPLACE);
.separator ","
.import ${BENCHMARK_RESULTS_DIR}/results.csv results
EOF