Remove missing expected field from csv.
diff --git a/print-historic-results.py b/print-historic-results.py
index 7c5f12b..e739903 100755
--- a/print-historic-results.py
+++ b/print-historic-results.py
@@ -46,7 +46,7 @@
This test measures the performance of the server and client compilers \
running Hadoop sorting a {}GB file using Terasort and compares \
the performance against the baseline performance of the Zero interpreter \
-and against the baseline performance of the client and server compilers \
+and against the baseline performance of the server compilers \
on {}.".format(os.getenv('NGIGABYTES'), os.getenv('BASEDATE')))
body <= P("\
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 @@
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