From 2a460f0814d3c3247a5528049e1cf5705039f9d4 Mon Sep 17 00:00:00 2001
From: hannes <hannes@cwi.nl>
Date: Tue, 22 Apr 2014 10:47:56 +0200
Subject: [PATCH] results tsv and plots

---
 plot.R                                        |   38 +-
 results/results-2014-04-07/results.tsv        | 2168 +++++++++++++++++
 results/results-2014-04-07/sf1-cold-all.pdf   |  Bin 0 -> 7324 bytes
 .../results-2014-04-07/sf1-cold-subset.pdf    |  Bin 0 -> 5138 bytes
 results/results-2014-04-07/sf1-hot-all.pdf    |  Bin 0 -> 7136 bytes
 results/results-2014-04-07/sf1-hot-subset.pdf |  Bin 0 -> 5090 bytes
 results/results-2014-04-07/sf10-cold-all.pdf  |  Bin 0 -> 7272 bytes
 .../results-2014-04-07/sf10-cold-subset.pdf   |  Bin 0 -> 5129 bytes
 results/results-2014-04-07/sf10-hot-all.pdf   |  Bin 0 -> 7126 bytes
 .../results-2014-04-07/sf10-hot-subset.pdf    |  Bin 0 -> 5092 bytes
 results/results-2014-04-07/sf5-cold-all.pdf   |  Bin 0 -> 7352 bytes
 .../results-2014-04-07/sf5-cold-subset.pdf    |  Bin 0 -> 5153 bytes
 results/results-2014-04-07/sf5-hot-all.pdf    |  Bin 0 -> 7175 bytes
 results/results-2014-04-07/sf5-hot-subset.pdf |  Bin 0 -> 5121 bytes
 14 files changed, 2183 insertions(+), 23 deletions(-)
 create mode 100644 results/results-2014-04-07/results.tsv
 create mode 100644 results/results-2014-04-07/sf1-cold-all.pdf
 create mode 100644 results/results-2014-04-07/sf1-cold-subset.pdf
 create mode 100644 results/results-2014-04-07/sf1-hot-all.pdf
 create mode 100644 results/results-2014-04-07/sf1-hot-subset.pdf
 create mode 100644 results/results-2014-04-07/sf10-cold-all.pdf
 create mode 100644 results/results-2014-04-07/sf10-cold-subset.pdf
 create mode 100644 results/results-2014-04-07/sf10-hot-all.pdf
 create mode 100644 results/results-2014-04-07/sf10-hot-subset.pdf
 create mode 100644 results/results-2014-04-07/sf5-cold-all.pdf
 create mode 100644 results/results-2014-04-07/sf5-cold-subset.pdf
 create mode 100644 results/results-2014-04-07/sf5-hot-all.pdf
 create mode 100644 results/results-2014-04-07/sf5-hot-subset.pdf

diff --git a/plot.R b/plot.R
index c05dd87..aa844d9 100644
--- a/plot.R
+++ b/plot.R
@@ -15,18 +15,6 @@ theme(axis.text.x = element_text(angle = 90, hjust = 1),
 compare <- read.table("results.tsv",sep="\t",na.strings="")
 names(compare) <- c ("db","dbver","bmark","sf","phase","q","rep","time")
 
-#compare.old <- read.table("results-hot-oldformat.tsv",sep="\t",na.strings="")
-#names(compare.old) <- c ("db","sf","phase","q","time")
-
-#compare.old <- compare.old[compare.old$phase=="hotruns",]
-#compare.old$rep <- 0
-#compare.old$dbver <- "42"
-#compare.old$bmark <- "tpch"
-
-#compare <- rbind(compare,compare.old)
-
-# we have a 30 min time limit, so everything over that is a fail
-#compare[compare$time>1800,]$time <- NA
 
 levels(compare$db) <- c("Citusdata","MonetDB","PostgreSQL")
 compare$db <- ordered(compare$db,levels=c("PostgreSQL","Citusdata","MonetDB"))
@@ -37,9 +25,12 @@ tpcplot <- function(data,filename="out.pdf",sf=1,phase="hotruns",queries=levels(
                  c("db", "q"), summarise, avgtime = mean(time),
                  se = sd(time) / sqrt(length(time)) )  
   pdata <- pdata[pdata$q %in% queries,]  
+  
   if (nrow(pdata) < 1) {warning("No data, dude."); return(NA)}
   pdata$outlier <- pdata$avgtime > ylimit
   if (nrow(pdata[pdata$outlier,]) > 0) pdata[pdata$outlier,]$se <- NA
+  
+
   pdf(filename,width=width,height=6)
   dodge <- position_dodge(width=.8)
   print(ggplot(pdata,aes(x=q,y=avgtime,fill=db)) + 
@@ -56,19 +47,20 @@ tpcplot <- function(data,filename="out.pdf",sf=1,phase="hotruns",queries=levels(
 qss <- c("Q03","Q05","Q06","Q10")
 
 # sf1
-tpcplot(data=compare,filename="sf1-hot-subset.pdf",sf="1",phase="hotruns",queries=qss,ylimit=4,main="Query Speed (Hot)",sub="TPC-H SF1 (1.1 GB)")
-tpcplot(data=compare,filename="sf1-hot-all.pdf",sf="1",phase="hotruns",ylimit=25,main="Query Speed (Hot)",sub="TPC-H SF1 (1.1 GB)",width=20)
-tpcplot(data=compare,filename="sf1-cold-subset.pdf",sf="1",phase="coldruns",queries=qss,ylimit=12,main="Query Speed (Cold)",sub="TPC-H SF1 (1.1 GB)")
-tpcplot(data=compare,filename="sf1-cold-all.pdf",sf="1",phase="coldruns",ylimit=25,main="Query Speed (Cold)",sub="TPC-H SF1 (1.1 GB)",width=20)
+ylimit <-15
+tpcplot(data=compare,filename="sf1-hot-subset.pdf",sf="1",phase="hotruns",queries=qss,ylimit=ylimit,main="Query Speed (Hot)",sub="TPC-H SF1 (1.1 GB)")
+tpcplot(data=compare,filename="sf1-hot-all.pdf",sf="1",phase="hotruns",ylimit=ylimit,main="Query Speed (Hot)",sub="TPC-H SF1 (1.1 GB)",width=20)
+tpcplot(data=compare,filename="sf1-cold-subset.pdf",sf="1",phase="coldruns",queries=qss,ylimit=ylimit,main="Query Speed (Cold)",sub="TPC-H SF1 (1.1 GB)")
+tpcplot(data=compare,filename="sf1-cold-all.pdf",sf="1",phase="coldruns",ylimit=ylimit,main="Query Speed (Cold)",sub="TPC-H SF1 (1.1 GB)",width=20)
 
 # sf5
-tpcplot(data=compare,filename="sf5-hot-subset.pdf",sf="5",phase="hotruns",queries=qss,ylimit=70,main="Query Speed (Hot)",sub="TPC-H SF5 (5.2 GB)")
-tpcplot(data=compare,filename="sf5-hot-all.pdf",sf="5",phase="hotruns",ylimit=80,main="Query Speed (Hot)",sub="TPC-H SF5 (5.2 GB)",width=20)
-tpcplot(data=compare,filename="sf5-cold-subset.pdf",sf="5",phase="coldruns",queries=qss,ylimit=70,main="Query Speed (Cold)",sub="TPC-H SF5 (5.2 GB)")
+tpcplot(data=compare,filename="sf5-hot-subset.pdf",sf="5",phase="hotruns",queries=qss,ylimit=100,main="Query Speed (Hot)",sub="TPC-H SF5 (5.2 GB)")
+tpcplot(data=compare,filename="sf5-hot-all.pdf",sf="5",phase="hotruns",ylimit=100,main="Query Speed (Hot)",sub="TPC-H SF5 (5.2 GB)",width=20)
+tpcplot(data=compare,filename="sf5-cold-subset.pdf",sf="5",phase="coldruns",queries=qss,ylimit=100,main="Query Speed (Cold)",sub="TPC-H SF5 (5.2 GB)")
 tpcplot(data=compare,filename="sf5-cold-all.pdf",sf="5",phase="coldruns",ylimit=100,main="Query Speed (Cold)",sub="TPC-H SF5 (5.2 GB)",width=20)
 
 # sf10
-tpcplot(data=compare,filename="sf10-hot-subset.pdf",sf="10",phase="hotruns",queries=qss,ylimit=40,main="Query Speed (Hot)",sub="TPC-H SF10 (11 GB)")
-tpcplot(data=compare,filename="sf10-hot-all.pdf",sf="10",phase="hotruns",ylimit=100,main="Query Speed (Hot)",sub="TPC-H SF10 (11 GB)",width=20)
-tpcplot(data=compare,filename="sf10-cold-subset.pdf",sf="10",phase="coldruns",queries=qss,ylimit=70,main="Query Speed (Cold)",sub="TPC-H SF10 (11 GB)")
-tpcplot(data=compare,filename="sf10-cold-all.pdf",sf="10",phase="coldruns",ylimit=100,main="Query Speed (Cold)",sub="TPC-H SF10 (11 GB)",width=20)
+tpcplot(data=compare,filename="sf10-hot-subset.pdf",sf="10",phase="hotruns",queries=qss,ylimit=130,main="Query Speed (Hot)",sub="TPC-H SF10 (11 GB)")
+tpcplot(data=compare,filename="sf10-hot-all.pdf",sf="10",phase="hotruns",ylimit=130,main="Query Speed (Hot)",sub="TPC-H SF10 (11 GB)",width=20)
+tpcplot(data=compare,filename="sf10-cold-subset.pdf",sf="10",phase="coldruns",queries=qss,ylimit=130,main="Query Speed (Cold)",sub="TPC-H SF10 (11 GB)")
+tpcplot(data=compare,filename="sf10-cold-all.pdf",sf="10",phase="coldruns",ylimit=130,main="Query Speed (Cold)",sub="TPC-H SF10 (11 GB)",width=20)
diff --git a/results/results-2014-04-07/results.tsv b/results/results-2014-04-07/results.tsv
new file mode 100644
index 0000000..67f371d
--- /dev/null
+++ b/results/results-2014-04-07/results.tsv
@@ -0,0 +1,2168 @@
+monetdb	11.17.13	tpch	1	coldruns	q01	1	3.49
+monetdb	11.17.13	tpch	1	coldruns	q02	1	1.14
+monetdb	11.17.13	tpch	1	coldruns	q03	1	3.26
+monetdb	11.17.13	tpch	1	coldruns	q04	1	2.20
+monetdb	11.17.13	tpch	1	coldruns	q05	1	3.66
+monetdb	11.17.13	tpch	1	coldruns	q06	1	2.19
+monetdb	11.17.13	tpch	1	coldruns	q07	1	4.32
+monetdb	11.17.13	tpch	1	coldruns	q08	1	4.04
+monetdb	11.17.13	tpch	1	coldruns	q09	1	5.00
+monetdb	11.17.13	tpch	1	coldruns	q10	1	3.25
+monetdb	11.17.13	tpch	1	coldruns	q11	1	0.89
+monetdb	11.17.13	tpch	1	coldruns	q12	1	2.99
+monetdb	11.17.13	tpch	1	coldruns	q13	1	2.63
+monetdb	11.17.13	tpch	1	coldruns	q14	1	2.48
+monetdb	11.17.13	tpch	1	coldruns	q15	1	2.64
+monetdb	11.17.13	tpch	1	coldruns	q16	1	0.82
+monetdb	11.17.13	tpch	1	coldruns	q17	1	2.94
+monetdb	11.17.13	tpch	1	coldruns	q18	1	2.58
+monetdb	11.17.13	tpch	1	coldruns	q19	1	2.80
+monetdb	11.17.13	tpch	1	coldruns	q20	1	2.64
+monetdb	11.17.13	tpch	1	coldruns	q21	1	4.55
+monetdb	11.17.13	tpch	1	coldruns	q22	1	0.51
+monetdb	11.17.13	tpch	1	coldruns	q01	2	3.26
+monetdb	11.17.13	tpch	1	coldruns	q02	2	1.15
+monetdb	11.17.13	tpch	1	coldruns	q03	2	3.36
+monetdb	11.17.13	tpch	1	coldruns	q04	2	2.84
+monetdb	11.17.13	tpch	1	coldruns	q05	2	3.37
+monetdb	11.17.13	tpch	1	coldruns	q06	2	2.32
+monetdb	11.17.13	tpch	1	coldruns	q07	2	3.81
+monetdb	11.17.13	tpch	1	coldruns	q08	2	4.25
+monetdb	11.17.13	tpch	1	coldruns	q09	2	4.90
+monetdb	11.17.13	tpch	1	coldruns	q10	2	3.37
+monetdb	11.17.13	tpch	1	coldruns	q11	2	1.01
+monetdb	11.17.13	tpch	1	coldruns	q12	2	3.23
+monetdb	11.17.13	tpch	1	coldruns	q13	2	2.75
+monetdb	11.17.13	tpch	1	coldruns	q14	2	2.61
+monetdb	11.17.13	tpch	1	coldruns	q15	2	2.52
+monetdb	11.17.13	tpch	1	coldruns	q16	2	0.75
+monetdb	11.17.13	tpch	1	coldruns	q17	2	3.11
+monetdb	11.17.13	tpch	1	coldruns	q18	2	2.93
+monetdb	11.17.13	tpch	1	coldruns	q19	2	2.72
+monetdb	11.17.13	tpch	1	coldruns	q20	2	2.61
+monetdb	11.17.13	tpch	1	coldruns	q21	2	3.94
+monetdb	11.17.13	tpch	1	coldruns	q22	2	0.70
+monetdb	11.17.13	tpch	1	coldruns	q01	3	3.36
+monetdb	11.17.13	tpch	1	coldruns	q02	3	1.22
+monetdb	11.17.13	tpch	1	coldruns	q03	3	4.00
+monetdb	11.17.13	tpch	1	coldruns	q04	3	2.43
+monetdb	11.17.13	tpch	1	coldruns	q05	3	3.13
+monetdb	11.17.13	tpch	1	coldruns	q06	3	2.43
+monetdb	11.17.13	tpch	1	coldruns	q07	3	3.78
+monetdb	11.17.13	tpch	1	coldruns	q08	3	4.03
+monetdb	11.17.13	tpch	1	coldruns	q09	3	6.65
+monetdb	11.17.13	tpch	1	coldruns	q10	3	3.38
+monetdb	11.17.13	tpch	1	coldruns	q11	3	0.88
+monetdb	11.17.13	tpch	1	coldruns	q12	3	3.38
+monetdb	11.17.13	tpch	1	coldruns	q13	3	2.99
+monetdb	11.17.13	tpch	1	coldruns	q14	3	2.88
+monetdb	11.17.13	tpch	1	coldruns	q15	3	2.58
+monetdb	11.17.13	tpch	1	coldruns	q16	3	0.74
+monetdb	11.17.13	tpch	1	coldruns	q17	3	2.76
+monetdb	11.17.13	tpch	1	coldruns	q18	3	2.81
+monetdb	11.17.13	tpch	1	coldruns	q19	3	3.06
+monetdb	11.17.13	tpch	1	coldruns	q20	3	2.42
+monetdb	11.17.13	tpch	1	coldruns	q21	3	4.21
+monetdb	11.17.13	tpch	1	coldruns	q22	3	0.70
+monetdb	11.17.13	tpch	1	coldruns	q01	4	3.57
+monetdb	11.17.13	tpch	1	coldruns	q02	4	1.27
+monetdb	11.17.13	tpch	1	coldruns	q03	4	3.63
+monetdb	11.17.13	tpch	1	coldruns	q04	4	2.42
+monetdb	11.17.13	tpch	1	coldruns	q05	4	3.60
+monetdb	11.17.13	tpch	1	coldruns	q06	4	2.47
+monetdb	11.17.13	tpch	1	coldruns	q07	4	3.94
+monetdb	11.17.13	tpch	1	coldruns	q08	4	4.56
+monetdb	11.17.13	tpch	1	coldruns	q09	4	4.98
+monetdb	11.17.13	tpch	1	coldruns	q10	4	3.58
+monetdb	11.17.13	tpch	1	coldruns	q11	4	0.84
+monetdb	11.17.13	tpch	1	coldruns	q12	4	3.57
+monetdb	11.17.13	tpch	1	coldruns	q13	4	2.64
+monetdb	11.17.13	tpch	1	coldruns	q14	4	2.32
+monetdb	11.17.13	tpch	1	coldruns	q15	4	2.92
+monetdb	11.17.13	tpch	1	coldruns	q16	4	0.83
+monetdb	11.17.13	tpch	1	coldruns	q17	4	2.90
+monetdb	11.17.13	tpch	1	coldruns	q18	4	2.78
+monetdb	11.17.13	tpch	1	coldruns	q19	4	2.70
+monetdb	11.17.13	tpch	1	coldruns	q20	4	2.67
+monetdb	11.17.13	tpch	1	coldruns	q21	4	3.88
+monetdb	11.17.13	tpch	1	coldruns	q22	4	0.61
+monetdb	11.17.13	tpch	1	coldruns	q01	5	3.55
+monetdb	11.17.13	tpch	1	coldruns	q02	5	1.42
+monetdb	11.17.13	tpch	1	coldruns	q03	5	3.50
+monetdb	11.17.13	tpch	1	coldruns	q04	5	2.57
+monetdb	11.17.13	tpch	1	coldruns	q05	5	3.60
+monetdb	11.17.13	tpch	1	coldruns	q06	5	2.59
+monetdb	11.17.13	tpch	1	coldruns	q07	5	3.84
+monetdb	11.17.13	tpch	1	coldruns	q08	5	3.96
+monetdb	11.17.13	tpch	1	coldruns	q09	5	5.40
+monetdb	11.17.13	tpch	1	coldruns	q10	5	3.45
+monetdb	11.17.13	tpch	1	coldruns	q11	5	0.86
+monetdb	11.17.13	tpch	1	coldruns	q12	5	3.18
+monetdb	11.17.13	tpch	1	coldruns	q13	5	2.77
+monetdb	11.17.13	tpch	1	coldruns	q14	5	2.50
+monetdb	11.17.13	tpch	1	coldruns	q15	5	2.72
+monetdb	11.17.13	tpch	1	coldruns	q16	5	0.93
+monetdb	11.17.13	tpch	1	coldruns	q17	5	3.05
+monetdb	11.17.13	tpch	1	coldruns	q18	5	2.88
+monetdb	11.17.13	tpch	1	coldruns	q19	5	2.81
+monetdb	11.17.13	tpch	1	coldruns	q20	5	2.79
+monetdb	11.17.13	tpch	1	coldruns	q21	5	4.15
+monetdb	11.17.13	tpch	1	coldruns	q22	5	0.60
+monetdb	11.17.13	tpch	1	warmup	q01	1	3.31
+monetdb	11.17.13	tpch	1	warmup	q02	1	1.36
+monetdb	11.17.13	tpch	1	warmup	q03	1	1.88
+monetdb	11.17.13	tpch	1	warmup	q04	1	1.69
+monetdb	11.17.13	tpch	1	warmup	q05	1	0.76
+monetdb	11.17.13	tpch	1	warmup	q06	1	0.37
+monetdb	11.17.13	tpch	1	warmup	q07	1	0.14
+monetdb	11.17.13	tpch	1	warmup	q08	1	0.71
+monetdb	11.17.13	tpch	1	warmup	q09	1	0.78
+monetdb	11.17.13	tpch	1	warmup	q10	1	0.41
+monetdb	11.17.13	tpch	1	warmup	q11	1	0.17
+monetdb	11.17.13	tpch	1	warmup	q12	1	0.36
+monetdb	11.17.13	tpch	1	warmup	q13	1	2.08
+monetdb	11.17.13	tpch	1	warmup	q14	1	0.03
+monetdb	11.17.13	tpch	1	warmup	q15	1	0.67
+monetdb	11.17.13	tpch	1	warmup	q16	1	0.25
+monetdb	11.17.13	tpch	1	warmup	q17	1	0.59
+monetdb	11.17.13	tpch	1	warmup	q18	1	0.41
+monetdb	11.17.13	tpch	1	warmup	q19	1	0.23
+monetdb	11.17.13	tpch	1	warmup	q20	1	0.15
+monetdb	11.17.13	tpch	1	warmup	q21	1	0.22
+monetdb	11.17.13	tpch	1	warmup	q22	1	0.05
+monetdb	11.17.13	tpch	1	warmup	q01	2	0.36
+monetdb	11.17.13	tpch	1	warmup	q02	2	0.02
+monetdb	11.17.13	tpch	1	warmup	q03	2	0.07
+monetdb	11.17.13	tpch	1	warmup	q04	2	0.05
+monetdb	11.17.13	tpch	1	warmup	q05	2	0.07
+monetdb	11.17.13	tpch	1	warmup	q06	2	0.01
+monetdb	11.17.13	tpch	1	warmup	q07	2	0.08
+monetdb	11.17.13	tpch	1	warmup	q08	2	0.05
+monetdb	11.17.13	tpch	1	warmup	q09	2	0.09
+monetdb	11.17.13	tpch	1	warmup	q10	2	0.06
+monetdb	11.17.13	tpch	1	warmup	q11	2	0.01
+monetdb	11.17.13	tpch	1	warmup	q12	2	0.03
+monetdb	11.17.13	tpch	1	warmup	q13	2	0.16
+monetdb	11.17.13	tpch	1	warmup	q14	2	0.01
+monetdb	11.17.13	tpch	1	warmup	q15	2	0.06
+monetdb	11.17.13	tpch	1	warmup	q16	2	0.13
+monetdb	11.17.13	tpch	1	warmup	q17	2	0.17
+monetdb	11.17.13	tpch	1	warmup	q18	2	0.16
+monetdb	11.17.13	tpch	1	warmup	q19	2	0.09
+monetdb	11.17.13	tpch	1	warmup	q20	2	0.04
+monetdb	11.17.13	tpch	1	warmup	q21	2	0.18
+monetdb	11.17.13	tpch	1	warmup	q22	2	0.05
+monetdb	11.17.13	tpch	1	hotruns	q01	1	0.36
+monetdb	11.17.13	tpch	1	hotruns	q02	1	0.02
+monetdb	11.17.13	tpch	1	hotruns	q03	1	0.08
+monetdb	11.17.13	tpch	1	hotruns	q04	1	0.05
+monetdb	11.17.13	tpch	1	hotruns	q05	1	0.07
+monetdb	11.17.13	tpch	1	hotruns	q06	1	0.01
+monetdb	11.17.13	tpch	1	hotruns	q07	1	0.08
+monetdb	11.17.13	tpch	1	hotruns	q08	1	0.05
+monetdb	11.17.13	tpch	1	hotruns	q09	1	0.09
+monetdb	11.17.13	tpch	1	hotruns	q10	1	0.05
+monetdb	11.17.13	tpch	1	hotruns	q11	1	0.01
+monetdb	11.17.13	tpch	1	hotruns	q12	1	0.03
+monetdb	11.17.13	tpch	1	hotruns	q13	1	0.16
+monetdb	11.17.13	tpch	1	hotruns	q14	1	0.01
+monetdb	11.17.13	tpch	1	hotruns	q15	1	0.07
+monetdb	11.17.13	tpch	1	hotruns	q16	1	0.13
+monetdb	11.17.13	tpch	1	hotruns	q17	1	0.17
+monetdb	11.17.13	tpch	1	hotruns	q18	1	0.17
+monetdb	11.17.13	tpch	1	hotruns	q19	1	0.09
+monetdb	11.17.13	tpch	1	hotruns	q20	1	0.04
+monetdb	11.17.13	tpch	1	hotruns	q21	1	0.18
+monetdb	11.17.13	tpch	1	hotruns	q22	1	0.05
+monetdb	11.17.13	tpch	1	hotruns	q01	2	0.37
+monetdb	11.17.13	tpch	1	hotruns	q02	2	0.02
+monetdb	11.17.13	tpch	1	hotruns	q03	2	0.08
+monetdb	11.17.13	tpch	1	hotruns	q04	2	0.05
+monetdb	11.17.13	tpch	1	hotruns	q05	2	0.07
+monetdb	11.17.13	tpch	1	hotruns	q06	2	0.01
+monetdb	11.17.13	tpch	1	hotruns	q07	2	0.08
+monetdb	11.17.13	tpch	1	hotruns	q08	2	0.05
+monetdb	11.17.13	tpch	1	hotruns	q09	2	0.09
+monetdb	11.17.13	tpch	1	hotruns	q10	2	0.06
+monetdb	11.17.13	tpch	1	hotruns	q11	2	0.01
+monetdb	11.17.13	tpch	1	hotruns	q12	2	0.03
+monetdb	11.17.13	tpch	1	hotruns	q13	2	0.16
+monetdb	11.17.13	tpch	1	hotruns	q14	2	0.01
+monetdb	11.17.13	tpch	1	hotruns	q15	2	0.08
+monetdb	11.17.13	tpch	1	hotruns	q16	2	0.12
+monetdb	11.17.13	tpch	1	hotruns	q17	2	0.17
+monetdb	11.17.13	tpch	1	hotruns	q18	2	0.18
+monetdb	11.17.13	tpch	1	hotruns	q19	2	0.09
+monetdb	11.17.13	tpch	1	hotruns	q20	2	0.04
+monetdb	11.17.13	tpch	1	hotruns	q21	2	0.18
+monetdb	11.17.13	tpch	1	hotruns	q22	2	0.05
+monetdb	11.17.13	tpch	1	hotruns	q01	3	0.36
+monetdb	11.17.13	tpch	1	hotruns	q02	3	0.02
+monetdb	11.17.13	tpch	1	hotruns	q03	3	0.08
+monetdb	11.17.13	tpch	1	hotruns	q04	3	0.05
+monetdb	11.17.13	tpch	1	hotruns	q05	3	0.07
+monetdb	11.17.13	tpch	1	hotruns	q06	3	0.01
+monetdb	11.17.13	tpch	1	hotruns	q07	3	0.08
+monetdb	11.17.13	tpch	1	hotruns	q08	3	0.05
+monetdb	11.17.13	tpch	1	hotruns	q09	3	0.09
+monetdb	11.17.13	tpch	1	hotruns	q10	3	0.06
+monetdb	11.17.13	tpch	1	hotruns	q11	3	0.01
+monetdb	11.17.13	tpch	1	hotruns	q12	3	0.03
+monetdb	11.17.13	tpch	1	hotruns	q13	3	0.16
+monetdb	11.17.13	tpch	1	hotruns	q14	3	0.01
+monetdb	11.17.13	tpch	1	hotruns	q15	3	0.08
+monetdb	11.17.13	tpch	1	hotruns	q16	3	0.13
+monetdb	11.17.13	tpch	1	hotruns	q17	3	0.17
+monetdb	11.17.13	tpch	1	hotruns	q18	3	0.17
+monetdb	11.17.13	tpch	1	hotruns	q19	3	0.09
+monetdb	11.17.13	tpch	1	hotruns	q20	3	0.04
+monetdb	11.17.13	tpch	1	hotruns	q21	3	0.18
+monetdb	11.17.13	tpch	1	hotruns	q22	3	0.05
+monetdb	11.17.13	tpch	1	hotruns	q01	4	0.36
+monetdb	11.17.13	tpch	1	hotruns	q02	4	0.03
+monetdb	11.17.13	tpch	1	hotruns	q03	4	0.08
+monetdb	11.17.13	tpch	1	hotruns	q04	4	0.05
+monetdb	11.17.13	tpch	1	hotruns	q05	4	0.07
+monetdb	11.17.13	tpch	1	hotruns	q06	4	0.01
+monetdb	11.17.13	tpch	1	hotruns	q07	4	0.08
+monetdb	11.17.13	tpch	1	hotruns	q08	4	0.05
+monetdb	11.17.13	tpch	1	hotruns	q09	4	0.09
+monetdb	11.17.13	tpch	1	hotruns	q10	4	0.06
+monetdb	11.17.13	tpch	1	hotruns	q11	4	0.01
+monetdb	11.17.13	tpch	1	hotruns	q12	4	0.03
+monetdb	11.17.13	tpch	1	hotruns	q13	4	0.16
+monetdb	11.17.13	tpch	1	hotruns	q14	4	0.01
+monetdb	11.17.13	tpch	1	hotruns	q15	4	0.07
+monetdb	11.17.13	tpch	1	hotruns	q16	4	0.13
+monetdb	11.17.13	tpch	1	hotruns	q17	4	0.16
+monetdb	11.17.13	tpch	1	hotruns	q18	4	0.17
+monetdb	11.17.13	tpch	1	hotruns	q19	4	0.09
+monetdb	11.17.13	tpch	1	hotruns	q20	4	0.04
+monetdb	11.17.13	tpch	1	hotruns	q21	4	0.18
+monetdb	11.17.13	tpch	1	hotruns	q22	4	0.05
+monetdb	11.17.13	tpch	1	hotruns	q01	5	0.37
+monetdb	11.17.13	tpch	1	hotruns	q02	5	0.02
+monetdb	11.17.13	tpch	1	hotruns	q03	5	0.08
+monetdb	11.17.13	tpch	1	hotruns	q04	5	0.05
+monetdb	11.17.13	tpch	1	hotruns	q05	5	0.07
+monetdb	11.17.13	tpch	1	hotruns	q06	5	0.01
+monetdb	11.17.13	tpch	1	hotruns	q07	5	0.08
+monetdb	11.17.13	tpch	1	hotruns	q08	5	0.05
+monetdb	11.17.13	tpch	1	hotruns	q09	5	0.09
+monetdb	11.17.13	tpch	1	hotruns	q10	5	0.05
+monetdb	11.17.13	tpch	1	hotruns	q11	5	0.01
+monetdb	11.17.13	tpch	1	hotruns	q12	5	0.03
+monetdb	11.17.13	tpch	1	hotruns	q13	5	0.16
+monetdb	11.17.13	tpch	1	hotruns	q14	5	0.01
+monetdb	11.17.13	tpch	1	hotruns	q15	5	0.08
+monetdb	11.17.13	tpch	1	hotruns	q16	5	0.13
+monetdb	11.17.13	tpch	1	hotruns	q17	5	0.17
+monetdb	11.17.13	tpch	1	hotruns	q18	5	0.16
+monetdb	11.17.13	tpch	1	hotruns	q19	5	0.09
+monetdb	11.17.13	tpch	1	hotruns	q20	5	0.04
+monetdb	11.17.13	tpch	1	hotruns	q21	5	0.18
+monetdb	11.17.13	tpch	1	hotruns	q22	5	0.05
+monetdb	11.17.13	tpch	5	coldruns	q01	1	12.45
+monetdb	11.17.13	tpch	5	coldruns	q02	1	2.93
+monetdb	11.17.13	tpch	5	coldruns	q03	1	13.57
+monetdb	11.17.13	tpch	5	coldruns	q04	1	13.10
+monetdb	11.17.13	tpch	5	coldruns	q05	1	11.95
+monetdb	11.17.13	tpch	5	coldruns	q06	1	15.50
+monetdb	11.17.13	tpch	5	coldruns	q07	1	14.56
+monetdb	11.17.13	tpch	5	coldruns	q08	1	14.39
+monetdb	11.17.13	tpch	5	coldruns	q09	1	19.17
+monetdb	11.17.13	tpch	5	coldruns	q10	1	11.06
+monetdb	11.17.13	tpch	5	coldruns	q11	1	2.51
+monetdb	11.17.13	tpch	5	coldruns	q12	1	14.32
+monetdb	11.17.13	tpch	5	coldruns	q13	1	12.44
+monetdb	11.17.13	tpch	5	coldruns	q14	1	11.52
+monetdb	11.17.13	tpch	5	coldruns	q15	1	9.54
+monetdb	11.17.13	tpch	5	coldruns	q16	1	2.22
+monetdb	11.17.13	tpch	5	coldruns	q17	1	10.68
+monetdb	11.17.13	tpch	5	coldruns	q18	1	8.78
+monetdb	11.17.13	tpch	5	coldruns	q19	1	9.26
+monetdb	11.17.13	tpch	5	coldruns	q20	1	9.25
+monetdb	11.17.13	tpch	5	coldruns	q21	1	17.46
+monetdb	11.17.13	tpch	5	coldruns	q22	1	1.91
+monetdb	11.17.13	tpch	5	coldruns	q01	2	13.85
+monetdb	11.17.13	tpch	5	coldruns	q02	2	3.09
+monetdb	11.17.13	tpch	5	coldruns	q03	2	14.21
+monetdb	11.17.13	tpch	5	coldruns	q04	2	11.53
+monetdb	11.17.13	tpch	5	coldruns	q05	2	11.67
+monetdb	11.17.13	tpch	5	coldruns	q06	2	16.76
+monetdb	11.17.13	tpch	5	coldruns	q07	2	15.96
+monetdb	11.17.13	tpch	5	coldruns	q08	2	14.34
+monetdb	11.17.13	tpch	5	coldruns	q09	2	19.66
+monetdb	11.17.13	tpch	5	coldruns	q10	2	13.01
+monetdb	11.17.13	tpch	5	coldruns	q11	2	2.26
+monetdb	11.17.13	tpch	5	coldruns	q12	2	13.03
+monetdb	11.17.13	tpch	5	coldruns	q13	2	12.60
+monetdb	11.17.13	tpch	5	coldruns	q14	2	11.35
+monetdb	11.17.13	tpch	5	coldruns	q15	2	9.65
+monetdb	11.17.13	tpch	5	coldruns	q16	2	2.10
+monetdb	11.17.13	tpch	5	coldruns	q17	2	10.65
+monetdb	11.17.13	tpch	5	coldruns	q18	2	8.02
+monetdb	11.17.13	tpch	5	coldruns	q19	2	9.89
+monetdb	11.17.13	tpch	5	coldruns	q20	2	9.08
+monetdb	11.17.13	tpch	5	coldruns	q21	2	17.57
+monetdb	11.17.13	tpch	5	coldruns	q22	2	1.42
+monetdb	11.17.13	tpch	5	coldruns	q01	3	13.28
+monetdb	11.17.13	tpch	5	coldruns	q02	3	2.94
+monetdb	11.17.13	tpch	5	coldruns	q03	3	15.32
+monetdb	11.17.13	tpch	5	coldruns	q04	3	12.24
+monetdb	11.17.13	tpch	5	coldruns	q05	3	13.10
+monetdb	11.17.13	tpch	5	coldruns	q06	3	16.76
+monetdb	11.17.13	tpch	5	coldruns	q07	3	14.78
+monetdb	11.17.13	tpch	5	coldruns	q08	3	14.56
+monetdb	11.17.13	tpch	5	coldruns	q09	3	18.99
+monetdb	11.17.13	tpch	5	coldruns	q10	3	12.70
+monetdb	11.17.13	tpch	5	coldruns	q11	3	2.47
+monetdb	11.17.13	tpch	5	coldruns	q12	3	14.04
+monetdb	11.17.13	tpch	5	coldruns	q13	3	12.30
+monetdb	11.17.13	tpch	5	coldruns	q14	3	11.53
+monetdb	11.17.13	tpch	5	coldruns	q15	3	9.47
+monetdb	11.17.13	tpch	5	coldruns	q16	3	1.84
+monetdb	11.17.13	tpch	5	coldruns	q17	3	11.37
+monetdb	11.17.13	tpch	5	coldruns	q18	3	8.67
+monetdb	11.17.13	tpch	5	coldruns	q19	3	9.85
+monetdb	11.17.13	tpch	5	coldruns	q20	3	9.17
+monetdb	11.17.13	tpch	5	coldruns	q21	3	18.66
+monetdb	11.17.13	tpch	5	coldruns	q22	3	1.45
+monetdb	11.17.13	tpch	5	coldruns	q01	4	13.27
+monetdb	11.17.13	tpch	5	coldruns	q02	4	2.93
+monetdb	11.17.13	tpch	5	coldruns	q03	4	14.42
+monetdb	11.17.13	tpch	5	coldruns	q04	4	11.23
+monetdb	11.17.13	tpch	5	coldruns	q05	4	11.91
+monetdb	11.17.13	tpch	5	coldruns	q06	4	16.76
+monetdb	11.17.13	tpch	5	coldruns	q07	4	14.71
+monetdb	11.17.13	tpch	5	coldruns	q08	4	14.51
+monetdb	11.17.13	tpch	5	coldruns	q09	4	19.58
+monetdb	11.17.13	tpch	5	coldruns	q10	4	11.08
+monetdb	11.17.13	tpch	5	coldruns	q11	4	2.03
+monetdb	11.17.13	tpch	5	coldruns	q12	4	15.54
+monetdb	11.17.13	tpch	5	coldruns	q13	4	14.05
+monetdb	11.17.13	tpch	5	coldruns	q14	4	11.59
+monetdb	11.17.13	tpch	5	coldruns	q15	4	9.84
+monetdb	11.17.13	tpch	5	coldruns	q16	4	2.00
+monetdb	11.17.13	tpch	5	coldruns	q17	4	10.70
+monetdb	11.17.13	tpch	5	coldruns	q18	4	8.26
+monetdb	11.17.13	tpch	5	coldruns	q19	4	9.72
+monetdb	11.17.13	tpch	5	coldruns	q20	4	10.53
+monetdb	11.17.13	tpch	5	coldruns	q21	4	17.31
+monetdb	11.17.13	tpch	5	coldruns	q22	4	1.49
+monetdb	11.17.13	tpch	5	coldruns	q01	5	13.73
+monetdb	11.17.13	tpch	5	coldruns	q02	5	3.66
+monetdb	11.17.13	tpch	5	coldruns	q03	5	14.53
+monetdb	11.17.13	tpch	5	coldruns	q04	5	11.25
+monetdb	11.17.13	tpch	5	coldruns	q05	5	11.68
+monetdb	11.17.13	tpch	5	coldruns	q06	5	17.11
+monetdb	11.17.13	tpch	5	coldruns	q07	5	14.81
+monetdb	11.17.13	tpch	5	coldruns	q08	5	14.57
+monetdb	11.17.13	tpch	5	coldruns	q09	5	20.71
+monetdb	11.17.13	tpch	5	coldruns	q10	5	13.26
+monetdb	11.17.13	tpch	5	coldruns	q11	5	2.24
+monetdb	11.17.13	tpch	5	coldruns	q12	5	13.70
+monetdb	11.17.13	tpch	5	coldruns	q13	5	12.29
+monetdb	11.17.13	tpch	5	coldruns	q14	5	11.70
+monetdb	11.17.13	tpch	5	coldruns	q15	5	9.69
+monetdb	11.17.13	tpch	5	coldruns	q16	5	2.09
+monetdb	11.17.13	tpch	5	coldruns	q17	5	10.66
+monetdb	11.17.13	tpch	5	coldruns	q18	5	8.04
+monetdb	11.17.13	tpch	5	coldruns	q19	5	9.79
+monetdb	11.17.13	tpch	5	coldruns	q20	5	9.43
+monetdb	11.17.13	tpch	5	coldruns	q21	5	17.46
+monetdb	11.17.13	tpch	5	coldruns	q22	5	1.57
+monetdb	11.17.13	tpch	5	warmup	q01	1	13.11
+monetdb	11.17.13	tpch	5	warmup	q02	1	3.59
+monetdb	11.17.13	tpch	5	warmup	q03	1	5.56
+monetdb	11.17.13	tpch	5	warmup	q04	1	8.83
+monetdb	11.17.13	tpch	5	warmup	q05	1	2.76
+monetdb	11.17.13	tpch	5	warmup	q06	1	1.69
+monetdb	11.17.13	tpch	5	warmup	q07	1	0.57
+monetdb	11.17.13	tpch	5	warmup	q08	1	2.91
+monetdb	11.17.13	tpch	5	warmup	q09	1	3.56
+monetdb	11.17.13	tpch	5	warmup	q10	1	0.92
+monetdb	11.17.13	tpch	5	warmup	q11	1	0.36
+monetdb	11.17.13	tpch	5	warmup	q12	1	1.68
+monetdb	11.17.13	tpch	5	warmup	q13	1	10.68
+monetdb	11.17.13	tpch	5	warmup	q14	1	0.08
+monetdb	11.17.13	tpch	5	warmup	q15	1	1.52
+monetdb	11.17.13	tpch	5	warmup	q16	1	0.94
+monetdb	11.17.13	tpch	5	warmup	q17	1	2.02
+monetdb	11.17.13	tpch	5	warmup	q18	1	1.90
+monetdb	11.17.13	tpch	5	warmup	q19	1	0.75
+monetdb	11.17.13	tpch	5	warmup	q20	1	0.52
+monetdb	11.17.13	tpch	5	warmup	q21	1	0.90
+monetdb	11.17.13	tpch	5	warmup	q22	1	0.25
+monetdb	11.17.13	tpch	5	warmup	q01	2	1.70
+monetdb	11.17.13	tpch	5	warmup	q02	2	0.06
+monetdb	11.17.13	tpch	5	warmup	q03	2	0.42
+monetdb	11.17.13	tpch	5	warmup	q04	2	0.23
+monetdb	11.17.13	tpch	5	warmup	q05	2	0.32
+monetdb	11.17.13	tpch	5	warmup	q06	2	0.06
+monetdb	11.17.13	tpch	5	warmup	q07	2	0.39
+monetdb	11.17.13	tpch	5	warmup	q08	2	0.27
+monetdb	11.17.13	tpch	5	warmup	q09	2	0.44
+monetdb	11.17.13	tpch	5	warmup	q10	2	0.31
+monetdb	11.17.13	tpch	5	warmup	q11	2	0.05
+monetdb	11.17.13	tpch	5	warmup	q12	2	0.12
+monetdb	11.17.13	tpch	5	warmup	q13	2	1.56
+monetdb	11.17.13	tpch	5	warmup	q14	2	0.06
+monetdb	11.17.13	tpch	5	warmup	q15	2	0.22
+monetdb	11.17.13	tpch	5	warmup	q16	2	0.51
+monetdb	11.17.13	tpch	5	warmup	q17	2	0.88
+monetdb	11.17.13	tpch	5	warmup	q18	2	0.92
+monetdb	11.17.13	tpch	5	warmup	q19	2	0.41
+monetdb	11.17.13	tpch	5	warmup	q20	2	0.20
+monetdb	11.17.13	tpch	5	warmup	q21	2	0.87
+monetdb	11.17.13	tpch	5	warmup	q22	2	0.26
+monetdb	11.17.13	tpch	5	hotruns	q01	1	1.75
+monetdb	11.17.13	tpch	5	hotruns	q02	1	0.06
+monetdb	11.17.13	tpch	5	hotruns	q03	1	0.45
+monetdb	11.17.13	tpch	5	hotruns	q04	1	0.23
+monetdb	11.17.13	tpch	5	hotruns	q05	1	0.33
+monetdb	11.17.13	tpch	5	hotruns	q06	1	0.06
+monetdb	11.17.13	tpch	5	hotruns	q07	1	0.38
+monetdb	11.17.13	tpch	5	hotruns	q08	1	0.27
+monetdb	11.17.13	tpch	5	hotruns	q09	1	0.44
+monetdb	11.17.13	tpch	5	hotruns	q10	1	0.30
+monetdb	11.17.13	tpch	5	hotruns	q11	1	0.05
+monetdb	11.17.13	tpch	5	hotruns	q12	1	0.12
+monetdb	11.17.13	tpch	5	hotruns	q13	1	1.57
+monetdb	11.17.13	tpch	5	hotruns	q14	1	0.05
+monetdb	11.17.13	tpch	5	hotruns	q15	1	0.21
+monetdb	11.17.13	tpch	5	hotruns	q16	1	0.51
+monetdb	11.17.13	tpch	5	hotruns	q17	1	0.88
+monetdb	11.17.13	tpch	5	hotruns	q18	1	0.79
+monetdb	11.17.13	tpch	5	hotruns	q19	1	0.40
+monetdb	11.17.13	tpch	5	hotruns	q20	1	0.18
+monetdb	11.17.13	tpch	5	hotruns	q21	1	0.85
+monetdb	11.17.13	tpch	5	hotruns	q22	1	0.25
+monetdb	11.17.13	tpch	5	hotruns	q01	2	1.71
+monetdb	11.17.13	tpch	5	hotruns	q02	2	0.07
+monetdb	11.17.13	tpch	5	hotruns	q03	2	0.45
+monetdb	11.17.13	tpch	5	hotruns	q04	2	0.23
+monetdb	11.17.13	tpch	5	hotruns	q05	2	0.33
+monetdb	11.17.13	tpch	5	hotruns	q06	2	0.06
+monetdb	11.17.13	tpch	5	hotruns	q07	2	0.39
+monetdb	11.17.13	tpch	5	hotruns	q08	2	0.27
+monetdb	11.17.13	tpch	5	hotruns	q09	2	0.45
+monetdb	11.17.13	tpch	5	hotruns	q10	2	0.31
+monetdb	11.17.13	tpch	5	hotruns	q11	2	0.05
+monetdb	11.17.13	tpch	5	hotruns	q12	2	0.13
+monetdb	11.17.13	tpch	5	hotruns	q13	2	1.56
+monetdb	11.17.13	tpch	5	hotruns	q14	2	0.05
+monetdb	11.17.13	tpch	5	hotruns	q15	2	0.21
+monetdb	11.17.13	tpch	5	hotruns	q16	2	0.52
+monetdb	11.17.13	tpch	5	hotruns	q17	2	0.88
+monetdb	11.17.13	tpch	5	hotruns	q18	2	0.84
+monetdb	11.17.13	tpch	5	hotruns	q19	2	0.41
+monetdb	11.17.13	tpch	5	hotruns	q20	2	0.20
+monetdb	11.17.13	tpch	5	hotruns	q21	2	0.85
+monetdb	11.17.13	tpch	5	hotruns	q22	2	0.26
+monetdb	11.17.13	tpch	5	hotruns	q01	3	1.70
+monetdb	11.17.13	tpch	5	hotruns	q02	3	0.07
+monetdb	11.17.13	tpch	5	hotruns	q03	3	0.42
+monetdb	11.17.13	tpch	5	hotruns	q04	3	0.23
+monetdb	11.17.13	tpch	5	hotruns	q05	3	0.33
+monetdb	11.17.13	tpch	5	hotruns	q06	3	0.06
+monetdb	11.17.13	tpch	5	hotruns	q07	3	0.39
+monetdb	11.17.13	tpch	5	hotruns	q08	3	0.26
+monetdb	11.17.13	tpch	5	hotruns	q09	3	0.45
+monetdb	11.17.13	tpch	5	hotruns	q10	3	0.30
+monetdb	11.17.13	tpch	5	hotruns	q11	3	0.04
+monetdb	11.17.13	tpch	5	hotruns	q12	3	0.13
+monetdb	11.17.13	tpch	5	hotruns	q13	3	1.57
+monetdb	11.17.13	tpch	5	hotruns	q14	3	0.05
+monetdb	11.17.13	tpch	5	hotruns	q15	3	0.20
+monetdb	11.17.13	tpch	5	hotruns	q16	3	0.51
+monetdb	11.17.13	tpch	5	hotruns	q17	3	0.88
+monetdb	11.17.13	tpch	5	hotruns	q18	3	0.93
+monetdb	11.17.13	tpch	5	hotruns	q19	3	0.40
+monetdb	11.17.13	tpch	5	hotruns	q20	3	0.19
+monetdb	11.17.13	tpch	5	hotruns	q21	3	0.89
+monetdb	11.17.13	tpch	5	hotruns	q22	3	0.26
+monetdb	11.17.13	tpch	5	hotruns	q01	4	1.75
+monetdb	11.17.13	tpch	5	hotruns	q02	4	0.06
+monetdb	11.17.13	tpch	5	hotruns	q03	4	0.43
+monetdb	11.17.13	tpch	5	hotruns	q04	4	0.24
+monetdb	11.17.13	tpch	5	hotruns	q05	4	0.33
+monetdb	11.17.13	tpch	5	hotruns	q06	4	0.06
+monetdb	11.17.13	tpch	5	hotruns	q07	4	0.39
+monetdb	11.17.13	tpch	5	hotruns	q08	4	0.27
+monetdb	11.17.13	tpch	5	hotruns	q09	4	0.45
+monetdb	11.17.13	tpch	5	hotruns	q10	4	0.31
+monetdb	11.17.13	tpch	5	hotruns	q11	4	0.04
+monetdb	11.17.13	tpch	5	hotruns	q12	4	0.13
+monetdb	11.17.13	tpch	5	hotruns	q13	4	1.58
+monetdb	11.17.13	tpch	5	hotruns	q14	4	0.05
+monetdb	11.17.13	tpch	5	hotruns	q15	4	0.22
+monetdb	11.17.13	tpch	5	hotruns	q16	4	0.51
+monetdb	11.17.13	tpch	5	hotruns	q17	4	0.88
+monetdb	11.17.13	tpch	5	hotruns	q18	4	0.92
+monetdb	11.17.13	tpch	5	hotruns	q19	4	0.41
+monetdb	11.17.13	tpch	5	hotruns	q20	4	0.19
+monetdb	11.17.13	tpch	5	hotruns	q21	4	0.95
+monetdb	11.17.13	tpch	5	hotruns	q22	4	0.25
+monetdb	11.17.13	tpch	5	hotruns	q01	5	1.75
+monetdb	11.17.13	tpch	5	hotruns	q02	5	0.06
+monetdb	11.17.13	tpch	5	hotruns	q03	5	0.43
+monetdb	11.17.13	tpch	5	hotruns	q04	5	0.23
+monetdb	11.17.13	tpch	5	hotruns	q05	5	0.33
+monetdb	11.17.13	tpch	5	hotruns	q06	5	0.06
+monetdb	11.17.13	tpch	5	hotruns	q07	5	0.39
+monetdb	11.17.13	tpch	5	hotruns	q08	5	0.27
+monetdb	11.17.13	tpch	5	hotruns	q09	5	0.45
+monetdb	11.17.13	tpch	5	hotruns	q10	5	0.31
+monetdb	11.17.13	tpch	5	hotruns	q11	5	0.05
+monetdb	11.17.13	tpch	5	hotruns	q12	5	0.13
+monetdb	11.17.13	tpch	5	hotruns	q13	5	1.56
+monetdb	11.17.13	tpch	5	hotruns	q14	5	0.06
+monetdb	11.17.13	tpch	5	hotruns	q15	5	0.21
+monetdb	11.17.13	tpch	5	hotruns	q16	5	0.52
+monetdb	11.17.13	tpch	5	hotruns	q17	5	0.88
+monetdb	11.17.13	tpch	5	hotruns	q18	5	0.93
+monetdb	11.17.13	tpch	5	hotruns	q19	5	0.41
+monetdb	11.17.13	tpch	5	hotruns	q20	5	0.20
+monetdb	11.17.13	tpch	5	hotruns	q21	5	0.93
+monetdb	11.17.13	tpch	5	hotruns	q22	5	0.25
+monetdb	11.17.13	tpch	10	coldruns	q01	1	28.55
+monetdb	11.17.13	tpch	10	coldruns	q02	1	4.23
+monetdb	11.17.13	tpch	10	coldruns	q03	1	32.74
+monetdb	11.17.13	tpch	10	coldruns	q04	1	22.38
+monetdb	11.17.13	tpch	10	coldruns	q05	1	24.55
+monetdb	11.17.13	tpch	10	coldruns	q06	1	36.35
+monetdb	11.17.13	tpch	10	coldruns	q07	1	34.80
+monetdb	11.17.13	tpch	10	coldruns	q08	1	29.88
+monetdb	11.17.13	tpch	10	coldruns	q09	1	63.13
+monetdb	11.17.13	tpch	10	coldruns	q10	1	21.78
+monetdb	11.17.13	tpch	10	coldruns	q11	1	3.24
+monetdb	11.17.13	tpch	10	coldruns	q12	1	27.49
+monetdb	11.17.13	tpch	10	coldruns	q13	1	22.98
+monetdb	11.17.13	tpch	10	coldruns	q14	1	25.18
+monetdb	11.17.13	tpch	10	coldruns	q15	1	23.76
+monetdb	11.17.13	tpch	10	coldruns	q16	1	3.09
+monetdb	11.17.13	tpch	10	coldruns	q17	1	20.36
+monetdb	11.17.13	tpch	10	coldruns	q18	1	16.32
+monetdb	11.17.13	tpch	10	coldruns	q19	1	18.40
+monetdb	11.17.13	tpch	10	coldruns	q20	1	20.31
+monetdb	11.17.13	tpch	10	coldruns	q21	1	33.92
+monetdb	11.17.13	tpch	10	coldruns	q22	1	2.23
+monetdb	11.17.13	tpch	10	coldruns	q01	2	30.00
+monetdb	11.17.13	tpch	10	coldruns	q02	2	4.49
+monetdb	11.17.13	tpch	10	coldruns	q03	2	31.31
+monetdb	11.17.13	tpch	10	coldruns	q04	2	21.39
+monetdb	11.17.13	tpch	10	coldruns	q05	2	24.84
+monetdb	11.17.13	tpch	10	coldruns	q06	2	39.16
+monetdb	11.17.13	tpch	10	coldruns	q07	2	34.94
+monetdb	11.17.13	tpch	10	coldruns	q08	2	31.06
+monetdb	11.17.13	tpch	10	coldruns	q09	2	60.34
+monetdb	11.17.13	tpch	10	coldruns	q10	2	21.50
+monetdb	11.17.13	tpch	10	coldruns	q11	2	3.20
+monetdb	11.17.13	tpch	10	coldruns	q12	2	29.58
+monetdb	11.17.13	tpch	10	coldruns	q13	2	24.75
+monetdb	11.17.13	tpch	10	coldruns	q14	2	24.93
+monetdb	11.17.13	tpch	10	coldruns	q15	2	22.77
+monetdb	11.17.13	tpch	10	coldruns	q16	2	3.07
+monetdb	11.17.13	tpch	10	coldruns	q17	2	20.41
+monetdb	11.17.13	tpch	10	coldruns	q18	2	19.10
+monetdb	11.17.13	tpch	10	coldruns	q19	2	19.27
+monetdb	11.17.13	tpch	10	coldruns	q20	2	23.16
+monetdb	11.17.13	tpch	10	coldruns	q21	2	34.52
+monetdb	11.17.13	tpch	10	coldruns	q22	2	2.48
+monetdb	11.17.13	tpch	10	coldruns	q01	3	31.06
+monetdb	11.17.13	tpch	10	coldruns	q02	3	4.35
+monetdb	11.17.13	tpch	10	coldruns	q03	3	36.46
+monetdb	11.17.13	tpch	10	coldruns	q04	3	23.18
+monetdb	11.17.13	tpch	10	coldruns	q05	3	26.86
+monetdb	11.17.13	tpch	10	coldruns	q06	3	39.81
+monetdb	11.17.13	tpch	10	coldruns	q07	3	35.35
+monetdb	11.17.13	tpch	10	coldruns	q08	3	32.68
+monetdb	11.17.13	tpch	10	coldruns	q09	3	65.37
+monetdb	11.17.13	tpch	10	coldruns	q10	3	21.31
+monetdb	11.17.13	tpch	10	coldruns	q11	3	3.34
+monetdb	11.17.13	tpch	10	coldruns	q12	3	28.17
+monetdb	11.17.13	tpch	10	coldruns	q13	3	25.66
+monetdb	11.17.13	tpch	10	coldruns	q14	3	25.84
+monetdb	11.17.13	tpch	10	coldruns	q15	3	22.80
+monetdb	11.17.13	tpch	10	coldruns	q16	3	3.22
+monetdb	11.17.13	tpch	10	coldruns	q17	3	21.47
+monetdb	11.17.13	tpch	10	coldruns	q18	3	18.73
+monetdb	11.17.13	tpch	10	coldruns	q19	3	19.20
+monetdb	11.17.13	tpch	10	coldruns	q20	3	21.02
+monetdb	11.17.13	tpch	10	coldruns	q21	3	34.42
+monetdb	11.17.13	tpch	10	coldruns	q22	3	2.41
+monetdb	11.17.13	tpch	10	coldruns	q01	4	30.35
+monetdb	11.17.13	tpch	10	coldruns	q02	4	4.43
+monetdb	11.17.13	tpch	10	coldruns	q03	4	31.61
+monetdb	11.17.13	tpch	10	coldruns	q04	4	21.38
+monetdb	11.17.13	tpch	10	coldruns	q05	4	25.40
+monetdb	11.17.13	tpch	10	coldruns	q06	4	39.53
+monetdb	11.17.13	tpch	10	coldruns	q07	4	34.82
+monetdb	11.17.13	tpch	10	coldruns	q08	4	32.16
+monetdb	11.17.13	tpch	10	coldruns	q09	4	64.36
+monetdb	11.17.13	tpch	10	coldruns	q10	4	22.26
+monetdb	11.17.13	tpch	10	coldruns	q11	4	3.10
+monetdb	11.17.13	tpch	10	coldruns	q12	4	28.95
+monetdb	11.17.13	tpch	10	coldruns	q13	4	24.16
+monetdb	11.17.13	tpch	10	coldruns	q14	4	25.15
+monetdb	11.17.13	tpch	10	coldruns	q15	4	23.44
+monetdb	11.17.13	tpch	10	coldruns	q16	4	3.21
+monetdb	11.17.13	tpch	10	coldruns	q17	4	19.60
+monetdb	11.17.13	tpch	10	coldruns	q18	4	16.66
+monetdb	11.17.13	tpch	10	coldruns	q19	4	18.73
+monetdb	11.17.13	tpch	10	coldruns	q20	4	21.59
+monetdb	11.17.13	tpch	10	coldruns	q21	4	34.00
+monetdb	11.17.13	tpch	10	coldruns	q22	4	2.35
+monetdb	11.17.13	tpch	10	coldruns	q01	5	32.62
+monetdb	11.17.13	tpch	10	coldruns	q02	5	4.89
+monetdb	11.17.13	tpch	10	coldruns	q03	5	32.31
+monetdb	11.17.13	tpch	10	coldruns	q04	5	21.63
+monetdb	11.17.13	tpch	10	coldruns	q05	5	24.47
+monetdb	11.17.13	tpch	10	coldruns	q06	5	39.39
+monetdb	11.17.13	tpch	10	coldruns	q07	5	33.19
+monetdb	11.17.13	tpch	10	coldruns	q08	5	32.19
+monetdb	11.17.13	tpch	10	coldruns	q09	5	61.51
+monetdb	11.17.13	tpch	10	coldruns	q10	5	24.00
+monetdb	11.17.13	tpch	10	coldruns	q11	5	3.21
+monetdb	11.17.13	tpch	10	coldruns	q12	5	28.19
+monetdb	11.17.13	tpch	10	coldruns	q13	5	23.12
+monetdb	11.17.13	tpch	10	coldruns	q14	5	25.96
+monetdb	11.17.13	tpch	10	coldruns	q15	5	22.89
+monetdb	11.17.13	tpch	10	coldruns	q16	5	3.39
+monetdb	11.17.13	tpch	10	coldruns	q17	5	20.90
+monetdb	11.17.13	tpch	10	coldruns	q18	5	16.91
+monetdb	11.17.13	tpch	10	coldruns	q19	5	19.70
+monetdb	11.17.13	tpch	10	coldruns	q20	5	20.81
+monetdb	11.17.13	tpch	10	coldruns	q21	5	34.00
+monetdb	11.17.13	tpch	10	coldruns	q22	5	2.51
+monetdb	11.17.13	tpch	10	warmup	q01	1	28.62
+monetdb	11.17.13	tpch	10	warmup	q02	1	4.48
+monetdb	11.17.13	tpch	10	warmup	q03	1	12.66
+monetdb	11.17.13	tpch	10	warmup	q04	1	20.18
+monetdb	11.17.13	tpch	10	warmup	q05	1	6.32
+monetdb	11.17.13	tpch	10	warmup	q06	1	2.95
+monetdb	11.17.13	tpch	10	warmup	q07	1	1.13
+monetdb	11.17.13	tpch	10	warmup	q08	1	5.81
+monetdb	11.17.13	tpch	10	warmup	q09	1	6.88
+monetdb	11.17.13	tpch	10	warmup	q10	1	1.25
+monetdb	11.17.13	tpch	10	warmup	q11	1	0.66
+monetdb	11.17.13	tpch	10	warmup	q12	1	2.39
+monetdb	11.17.13	tpch	10	warmup	q13	1	22.87
+monetdb	11.17.13	tpch	10	warmup	q14	1	0.12
+monetdb	11.17.13	tpch	10	warmup	q15	1	2.76
+monetdb	11.17.13	tpch	10	warmup	q16	1	1.60
+monetdb	11.17.13	tpch	10	warmup	q17	1	3.33
+monetdb	11.17.13	tpch	10	warmup	q18	1	3.71
+monetdb	11.17.13	tpch	10	warmup	q19	1	1.28
+monetdb	11.17.13	tpch	10	warmup	q20	1	0.98
+monetdb	11.17.13	tpch	10	warmup	q21	1	1.73
+monetdb	11.17.13	tpch	10	warmup	q22	1	0.52
+monetdb	11.17.13	tpch	10	warmup	q01	2	3.70
+monetdb	11.17.13	tpch	10	warmup	q02	2	0.12
+monetdb	11.17.13	tpch	10	warmup	q03	2	0.89
+monetdb	11.17.13	tpch	10	warmup	q04	2	0.46
+monetdb	11.17.13	tpch	10	warmup	q05	2	0.66
+monetdb	11.17.13	tpch	10	warmup	q06	2	0.13
+monetdb	11.17.13	tpch	10	warmup	q07	2	0.76
+monetdb	11.17.13	tpch	10	warmup	q08	2	0.55
+monetdb	11.17.13	tpch	10	warmup	q09	2	0.91
+monetdb	11.17.13	tpch	10	warmup	q10	2	0.64
+monetdb	11.17.13	tpch	10	warmup	q11	2	0.09
+monetdb	11.17.13	tpch	10	warmup	q12	2	0.25
+monetdb	11.17.13	tpch	10	warmup	q13	2	3.93
+monetdb	11.17.13	tpch	10	warmup	q14	2	0.11
+monetdb	11.17.13	tpch	10	warmup	q15	2	0.39
+monetdb	11.17.13	tpch	10	warmup	q16	2	1.04
+monetdb	11.17.13	tpch	10	warmup	q17	2	1.55
+monetdb	11.17.13	tpch	10	warmup	q18	2	1.58
+monetdb	11.17.13	tpch	10	warmup	q19	2	0.80
+monetdb	11.17.13	tpch	10	warmup	q20	2	0.37
+monetdb	11.17.13	tpch	10	warmup	q21	2	1.73
+monetdb	11.17.13	tpch	10	warmup	q22	2	0.51
+monetdb	11.17.13	tpch	10	hotruns	q01	1	4.02
+monetdb	11.17.13	tpch	10	hotruns	q02	1	0.12
+monetdb	11.17.13	tpch	10	hotruns	q03	1	0.95
+monetdb	11.17.13	tpch	10	hotruns	q04	1	0.46
+monetdb	11.17.13	tpch	10	hotruns	q05	1	0.67
+monetdb	11.17.13	tpch	10	hotruns	q06	1	0.13
+monetdb	11.17.13	tpch	10	hotruns	q07	1	0.76
+monetdb	11.17.13	tpch	10	hotruns	q08	1	0.55
+monetdb	11.17.13	tpch	10	hotruns	q09	1	0.91
+monetdb	11.17.13	tpch	10	hotruns	q10	1	0.62
+monetdb	11.17.13	tpch	10	hotruns	q11	1	0.09
+monetdb	11.17.13	tpch	10	hotruns	q12	1	0.25
+monetdb	11.17.13	tpch	10	hotruns	q13	1	3.90
+monetdb	11.17.13	tpch	10	hotruns	q14	1	0.10
+monetdb	11.17.13	tpch	10	hotruns	q15	1	0.40
+monetdb	11.17.13	tpch	10	hotruns	q16	1	1.04
+monetdb	11.17.13	tpch	10	hotruns	q17	1	1.56
+monetdb	11.17.13	tpch	10	hotruns	q18	1	1.73
+monetdb	11.17.13	tpch	10	hotruns	q19	1	0.80
+monetdb	11.17.13	tpch	10	hotruns	q20	1	0.38
+monetdb	11.17.13	tpch	10	hotruns	q21	1	1.75
+monetdb	11.17.13	tpch	10	hotruns	q22	1	0.53
+monetdb	11.17.13	tpch	10	hotruns	q01	2	4.02
+monetdb	11.17.13	tpch	10	hotruns	q02	2	0.12
+monetdb	11.17.13	tpch	10	hotruns	q03	2	1.02
+monetdb	11.17.13	tpch	10	hotruns	q04	2	0.46
+monetdb	11.17.13	tpch	10	hotruns	q05	2	0.66
+monetdb	11.17.13	tpch	10	hotruns	q06	2	0.13
+monetdb	11.17.13	tpch	10	hotruns	q07	2	0.78
+monetdb	11.17.13	tpch	10	hotruns	q08	2	0.55
+monetdb	11.17.13	tpch	10	hotruns	q09	2	0.93
+monetdb	11.17.13	tpch	10	hotruns	q10	2	0.61
+monetdb	11.17.13	tpch	10	hotruns	q11	2	0.09
+monetdb	11.17.13	tpch	10	hotruns	q12	2	0.25
+monetdb	11.17.13	tpch	10	hotruns	q13	2	3.92
+monetdb	11.17.13	tpch	10	hotruns	q14	2	0.10
+monetdb	11.17.13	tpch	10	hotruns	q15	2	0.40
+monetdb	11.17.13	tpch	10	hotruns	q16	2	1.04
+monetdb	11.17.13	tpch	10	hotruns	q17	2	1.56
+monetdb	11.17.13	tpch	10	hotruns	q18	2	1.87
+monetdb	11.17.13	tpch	10	hotruns	q19	2	0.80
+monetdb	11.17.13	tpch	10	hotruns	q20	2	0.39
+monetdb	11.17.13	tpch	10	hotruns	q21	2	1.75
+monetdb	11.17.13	tpch	10	hotruns	q22	2	0.51
+monetdb	11.17.13	tpch	10	hotruns	q01	3	3.77
+monetdb	11.17.13	tpch	10	hotruns	q02	3	0.13
+monetdb	11.17.13	tpch	10	hotruns	q03	3	0.96
+monetdb	11.17.13	tpch	10	hotruns	q04	3	0.46
+monetdb	11.17.13	tpch	10	hotruns	q05	3	0.66
+monetdb	11.17.13	tpch	10	hotruns	q06	3	0.13
+monetdb	11.17.13	tpch	10	hotruns	q07	3	0.78
+monetdb	11.17.13	tpch	10	hotruns	q08	3	0.55
+monetdb	11.17.13	tpch	10	hotruns	q09	3	0.91
+monetdb	11.17.13	tpch	10	hotruns	q10	3	0.61
+monetdb	11.17.13	tpch	10	hotruns	q11	3	0.09
+monetdb	11.17.13	tpch	10	hotruns	q12	3	0.24
+monetdb	11.17.13	tpch	10	hotruns	q13	3	3.95
+monetdb	11.17.13	tpch	10	hotruns	q14	3	0.10
+monetdb	11.17.13	tpch	10	hotruns	q15	3	0.40
+monetdb	11.17.13	tpch	10	hotruns	q16	3	1.04
+monetdb	11.17.13	tpch	10	hotruns	q17	3	1.54
+monetdb	11.17.13	tpch	10	hotruns	q18	3	1.70
+monetdb	11.17.13	tpch	10	hotruns	q19	3	0.80
+monetdb	11.17.13	tpch	10	hotruns	q20	3	0.38
+monetdb	11.17.13	tpch	10	hotruns	q21	3	1.76
+monetdb	11.17.13	tpch	10	hotruns	q22	3	0.51
+monetdb	11.17.13	tpch	10	hotruns	q01	4	4.27
+monetdb	11.17.13	tpch	10	hotruns	q02	4	0.12
+monetdb	11.17.13	tpch	10	hotruns	q03	4	0.96
+monetdb	11.17.13	tpch	10	hotruns	q04	4	0.48
+monetdb	11.17.13	tpch	10	hotruns	q05	4	0.65
+monetdb	11.17.13	tpch	10	hotruns	q06	4	0.13
+monetdb	11.17.13	tpch	10	hotruns	q07	4	0.77
+monetdb	11.17.13	tpch	10	hotruns	q08	4	0.55
+monetdb	11.17.13	tpch	10	hotruns	q09	4	0.91
+monetdb	11.17.13	tpch	10	hotruns	q10	4	0.63
+monetdb	11.17.13	tpch	10	hotruns	q11	4	0.10
+monetdb	11.17.13	tpch	10	hotruns	q12	4	0.25
+monetdb	11.17.13	tpch	10	hotruns	q13	4	3.95
+monetdb	11.17.13	tpch	10	hotruns	q14	4	0.11
+monetdb	11.17.13	tpch	10	hotruns	q15	4	0.39
+monetdb	11.17.13	tpch	10	hotruns	q16	4	1.05
+monetdb	11.17.13	tpch	10	hotruns	q17	4	1.54
+monetdb	11.17.13	tpch	10	hotruns	q18	4	1.86
+monetdb	11.17.13	tpch	10	hotruns	q19	4	0.80
+monetdb	11.17.13	tpch	10	hotruns	q20	4	0.34
+monetdb	11.17.13	tpch	10	hotruns	q21	4	1.75
+monetdb	11.17.13	tpch	10	hotruns	q22	4	0.51
+monetdb	11.17.13	tpch	10	hotruns	q01	5	4.01
+monetdb	11.17.13	tpch	10	hotruns	q02	5	0.12
+monetdb	11.17.13	tpch	10	hotruns	q03	5	0.90
+monetdb	11.17.13	tpch	10	hotruns	q04	5	0.46
+monetdb	11.17.13	tpch	10	hotruns	q05	5	0.66
+monetdb	11.17.13	tpch	10	hotruns	q06	5	0.13
+monetdb	11.17.13	tpch	10	hotruns	q07	5	0.77
+monetdb	11.17.13	tpch	10	hotruns	q08	5	0.56
+monetdb	11.17.13	tpch	10	hotruns	q09	5	0.92
+monetdb	11.17.13	tpch	10	hotruns	q10	5	0.62
+monetdb	11.17.13	tpch	10	hotruns	q11	5	0.09
+monetdb	11.17.13	tpch	10	hotruns	q12	5	0.24
+monetdb	11.17.13	tpch	10	hotruns	q13	5	3.91
+monetdb	11.17.13	tpch	10	hotruns	q14	5	0.10
+monetdb	11.17.13	tpch	10	hotruns	q15	5	0.41
+monetdb	11.17.13	tpch	10	hotruns	q16	5	1.06
+monetdb	11.17.13	tpch	10	hotruns	q17	5	1.54
+monetdb	11.17.13	tpch	10	hotruns	q18	5	1.87
+monetdb	11.17.13	tpch	10	hotruns	q19	5	0.81
+monetdb	11.17.13	tpch	10	hotruns	q20	5	0.38
+monetdb	11.17.13	tpch	10	hotruns	q21	5	1.84
+monetdb	11.17.13	tpch	10	hotruns	q22	5	0.53
+citusdata	snapshot-2014-04-07	tpch	1	analyze			233.71
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q03	1	4.61
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q04	1	3.75
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q05	1	4.39
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q06	1	3.11
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q07	1	4.36
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q08	1	4.01
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q09	1	9.80
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q10	1	5.51
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q11	1	1.19
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q12	1	3.56
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q13	1	2.99
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q14	1	3.20
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q15	1	4.48
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q16	1	4.18
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q18	1	7.83
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q19	1	3.78
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q21	1	7.31
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q22	1	1.53
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q03	2	4.84
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q04	2	3.64
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q05	2	4.59
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q06	2	3.30
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q07	2	4.95
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q08	2	4.03
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q09	2	9.77
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q10	2	5.72
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q11	2	1.12
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q12	2	3.68
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q13	2	2.99
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q14	2	3.30
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q15	2	4.50
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q16	2	4.19
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q18	2	7.69
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q19	2	4.10
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q21	2	7.42
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q22	2	1.73
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q03	3	4.44
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q04	3	3.95
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q05	3	4.62
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q06	3	3.23
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q07	3	5.26
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q08	3	4.19
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q09	3	9.88
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q10	3	6.13
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q11	3	1.14
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q12	3	3.79
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q13	3	3.12
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q14	3	3.40
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q15	3	4.73
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q16	3	4.24
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q18	3	8.10
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q19	3	3.91
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q21	3	7.32
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q22	3	1.42
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q03	4	4.97
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q04	4	3.81
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q05	4	4.83
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q06	4	3.22
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q07	4	4.71
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q08	4	5.06
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q09	4	10.01
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q10	4	5.62
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q11	4	1.03
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q12	4	3.64
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q13	4	3.14
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q14	4	3.20
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q15	4	4.65
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q16	4	4.25
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q18	4	8.42
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q19	4	4.18
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q21	4	7.56
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q22	4	1.44
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q03	5	4.37
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q04	5	3.68
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q05	5	4.44
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q06	5	3.51
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q07	5	4.52
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q08	5	4.09
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q09	5	9.70
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q10	5	5.60
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q11	5	1.07
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q12	5	3.52
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q13	5	2.97
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q14	5	3.61
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q15	5	4.59
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q16	5	4.32
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q18	5	7.92
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q19	5	3.91
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q21	5	7.63
+citusdata	snapshot-2014-04-07	tpch	1	coldruns	q22	5	1.47
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q03	1	3.60
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q04	1	2.45
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q05	1	2.74
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q06	1	1.32
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q07	1	1.89
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q08	1	1.84
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q09	1	7.79
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q10	1	3.71
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q11	1	0.33
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q12	1	2.17
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q13	1	2.10
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q14	1	1.03
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q15	1	2.49
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q16	1	3.45
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q18	1	6.30
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q19	1	2.23
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q21	1	4.93
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q22	1	0.49
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q03	2	2.04
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q04	2	1.71
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q05	2	2.06
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q06	2	1.14
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q07	2	1.87
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q08	2	1.42
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q09	2	7.50
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q10	2	3.25
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q11	2	0.26
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q12	2	1.95
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q13	2	1.89
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q14	2	1.04
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q15	2	2.25
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q16	2	3.45
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q18	2	6.07
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q19	2	1.93
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q21	2	4.85
+citusdata	snapshot-2014-04-07	tpch	1	warmup	q22	2	0.48
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q03	1	2.04
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q04	1	1.71
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q05	1	2.04
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q06	1	1.10
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q07	1	1.86
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q08	1	1.43
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q09	1	7.49
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q10	1	3.24
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q11	1	0.26
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q12	1	1.94
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q13	1	1.88
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q14	1	1.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q15	1	2.73
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q16	1	3.49
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q18	1	6.06
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q19	1	1.93
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q21	1	4.84
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q22	1	0.48
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q03	2	2.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q04	2	1.73
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q05	2	2.05
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q06	2	1.11
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q07	2	1.86
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q08	2	1.41
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q09	2	7.51
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q10	2	3.22
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q11	2	0.26
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q12	2	1.94
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q13	2	1.88
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q14	2	1.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q15	2	2.29
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q16	2	3.42
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q18	2	6.08
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q19	2	1.93
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q21	2	4.84
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q22	2	0.50
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q03	3	2.09
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q04	3	1.76
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q05	3	2.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q06	3	1.11
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q07	3	1.86
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q08	3	1.43
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q09	3	7.50
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q10	3	3.29
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q11	3	0.26
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q12	3	1.95
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q13	3	1.87
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q14	3	1.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q15	3	2.29
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q16	3	3.43
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q18	3	6.07
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q19	3	1.94
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q21	3	4.86
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q22	3	0.47
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q03	4	2.04
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q04	4	1.72
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q05	4	2.05
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q06	4	1.11
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q07	4	1.87
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q08	4	1.41
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q09	4	7.53
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q10	4	3.23
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q11	4	0.26
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q12	4	1.96
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q13	4	1.88
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q14	4	1.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q15	4	2.29
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q16	4	3.41
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q18	4	6.11
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q19	4	1.93
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q21	4	4.84
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q22	4	0.48
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q03	5	2.04
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q04	5	1.71
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q05	5	2.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q06	5	1.11
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q07	5	1.87
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q08	5	1.42
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q09	5	7.51
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q10	5	3.25
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q11	5	0.26
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q12	5	1.95
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q13	5	1.90
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q14	5	1.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q15	5	2.27
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q16	5	3.45
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q18	5	6.03
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q19	5	1.92
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q21	5	4.98
+citusdata	snapshot-2014-04-07	tpch	1	hotruns	q22	5	0.50
+citusdata	snapshot-2014-04-07	tpch	5	load			349.11
+citusdata	snapshot-2014-04-07	tpch	5	constraints			0.02
+citusdata	snapshot-2014-04-07	tpch	5	analyze			433.08
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q03	1	20.60
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q04	1	21.40
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q05	1	24.54
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q06	1	12.94
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q07	1	24.88
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q08	1	21.02
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q09	1	56.34
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q10	1	30.47
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q11	1	2.82
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q12	1	22.53
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q13	1	13.81
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q14	1	16.05
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q15	1	19.28
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q16	1	22.08
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q18	1	45.97
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q19	1	18.38
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q21	1	35.42
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q22	1	4.42
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q03	2	20.73
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q04	2	16.09
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q05	2	23.33
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q06	2	13.17
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q07	2	21.50
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q08	2	20.65
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q09	2	58.61
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q10	2	24.89
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q11	2	2.90
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q12	2	15.98
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q13	2	13.37
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q14	2	15.73
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q15	2	20.08
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q16	2	21.93
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q18	2	49.91
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q19	2	18.86
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q21	2	34.75
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q22	2	4.42
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q03	3	20.11
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q04	3	16.09
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q05	3	23.55
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q06	3	13.02
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q07	3	20.03
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q08	3	19.30
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q09	3	58.53
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q10	3	29.57
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q11	3	2.83
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q12	3	18.23
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q13	3	13.29
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q14	3	13.70
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q15	3	20.66
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q16	3	21.96
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q18	3	43.24
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q19	3	17.16
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q21	3	34.97
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q22	3	4.40
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q03	4	21.77
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q04	4	15.80
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q05	4	23.70
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q06	4	12.99
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q07	4	20.26
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q08	4	19.25
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q09	4	56.47
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q10	4	27.32
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q11	4	2.91
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q12	4	17.36
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q13	4	13.34
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q14	4	14.09
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q15	4	19.76
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q16	4	22.05
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q18	4	41.48
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q19	4	17.21
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q21	4	34.92
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q22	4	4.52
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q03	5	20.61
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q04	5	16.07
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q05	5	24.87
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q06	5	12.91
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q07	5	30.41
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q08	5	20.95
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q09	5	65.51
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q10	5	25.96
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q11	5	2.96
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q12	5	15.87
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q13	5	13.33
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q14	5	13.96
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q15	5	19.26
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q16	5	22.26
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q18	5	42.05
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q19	5	17.12
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q21	5	35.28
+citusdata	snapshot-2014-04-07	tpch	5	coldruns	q22	5	4.29
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q03	1	20.21
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q04	1	11.60
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q05	1	18.77
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q06	1	7.18
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q07	1	9.84
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q08	1	11.86
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q09	1	48.78
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q10	1	18.02
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q11	1	1.80
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q12	1	10.94
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q13	1	11.35
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q14	1	5.17
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q15	1	11.11
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q16	1	21.12
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q18	1	36.32
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q19	1	9.60
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q21	1	24.22
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q22	1	2.57
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q03	2	10.76
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q04	2	8.76
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q05	2	13.17
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q06	2	5.64
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q07	2	9.77
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q08	2	9.01
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q09	2	54.10
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q10	2	16.36
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q11	2	1.50
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q12	2	9.07
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q13	2	10.41
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q14	2	5.16
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q15	2	10.87
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q16	2	21.03
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q18	2	31.26
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q19	2	8.62
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q21	2	24.18
+citusdata	snapshot-2014-04-07	tpch	5	warmup	q22	2	2.57
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q03	1	10.79
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q04	1	8.78
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q05	1	13.19
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q06	1	5.63
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q07	1	9.78
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q08	1	9.02
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q09	1	58.45
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q10	1	18.11
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q11	1	1.52
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q12	1	8.94
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q13	1	10.46
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q14	1	5.18
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q15	1	10.87
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q16	1	20.79
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q18	1	31.38
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q19	1	8.76
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q21	1	24.26
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q22	1	2.56
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q03	2	10.75
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q04	2	8.76
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q05	2	13.14
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q06	2	5.68
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q07	2	9.84
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q08	2	9.05
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q09	2	47.55
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q10	2	16.22
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q11	2	1.50
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q12	2	9.08
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q13	2	10.44
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q14	2	5.18
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q15	2	10.89
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q16	2	20.80
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q18	2	31.28
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q19	2	8.61
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q21	2	24.20
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q22	2	2.56
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q03	3	10.73
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q04	3	8.76
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q05	3	13.11
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q06	3	5.65
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q07	3	9.76
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q08	3	9.05
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q09	3	54.61
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q10	3	16.16
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q11	3	1.51
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q12	3	8.90
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q13	3	10.42
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q14	3	5.17
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q15	3	10.86
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q16	3	20.81
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q18	3	31.31
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q19	3	8.59
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q21	3	24.25
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q22	3	2.58
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q03	4	10.76
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q04	4	8.77
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q05	4	13.14
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q06	4	5.65
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q07	4	9.77
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q08	4	9.00
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q09	4	47.79
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q10	4	16.17
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q11	4	1.51
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q12	4	8.93
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q13	4	10.42
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q14	4	5.15
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q15	4	10.87
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q16	4	20.79
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q18	4	31.28
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q19	4	8.64
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q21	4	24.25
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q22	4	2.54
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q03	5	10.74
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q04	5	8.81
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q05	5	13.11
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q06	5	5.65
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q07	5	9.79
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q08	5	9.03
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q09	5	47.45
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q10	5	16.27
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q11	5	1.51
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q12	5	8.93
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q13	5	10.43
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q14	5	5.17
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q15	5	10.90
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q16	5	20.81
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q18	5	31.23
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q19	5	8.65
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q21	5	24.18
+citusdata	snapshot-2014-04-07	tpch	5	hotruns	q22	5	2.56
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	1	0.23
+citusdata	snapshot-2014-04-07	tpch	10	load			694.88
+citusdata	snapshot-2014-04-07	tpch	10	constraints			0.03
+citusdata	snapshot-2014-04-07	tpch	10	analyze			567.90
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	1	50.40
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q04	1	31.54
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q05	1	66.89
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q06	1	26.55
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q07	1	53.79
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q08	1	39.04
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q09	1	143.42
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q10	1	52.29
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q11	1	5.49
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q12	1	40.79
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q13	1	26.57
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q14	1	30.11
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q15	1	40.03
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q16	1	46.56
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q18	1	85.93
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q19	1	38.16
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q21	1	104.99
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q22	1	8.67
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	2	47.36
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q04	2	31.79
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q05	2	67.25
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q06	2	26.40
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q07	2	55.00
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q08	2	38.92
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q09	2	142.72
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q10	2	53.97
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q11	2	5.64
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q12	2	34.53
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q13	2	26.74
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q14	2	31.00
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q15	2	39.71
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q16	2	46.41
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q18	2	88.18
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q19	2	38.53
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q21	2	93.33
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q22	2	8.59
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	3	46.46
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q04	3	44.80
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q05	3	67.44
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q06	3	26.48
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q07	3	53.64
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q08	3	39.43
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q09	3	143.06
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q10	3	53.69
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q11	3	5.40
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q12	3	41.40
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q13	3	26.53
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q14	3	30.31
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q15	3	39.21
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q16	3	46.63
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q18	3	86.36
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q19	3	38.65
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q21	3	95.18
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q22	3	8.42
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	4	57.30
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q04	4	31.67
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q05	4	67.07
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q06	4	26.26
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q07	4	55.26
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q08	4	38.68
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q09	4	144.35
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q10	4	61.78
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q11	4	5.47
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q12	4	39.40
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q13	4	28.02
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q14	4	29.54
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q15	4	40.41
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q16	4	46.60
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q18	4	86.44
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q19	4	38.18
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q21	4	93.57
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q22	4	8.55
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q03	5	50.21
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q04	5	31.22
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q05	5	69.05
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q06	5	26.11
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q07	5	55.12
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q08	5	39.68
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q09	5	140.84
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q10	5	64.09
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q11	5	5.46
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q12	5	44.66
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q13	5	26.38
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q14	5	30.33
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q15	5	41.08
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q16	5	46.89
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q18	5	105.24
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q19	5	36.01
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q21	5	102.71
+citusdata	snapshot-2014-04-07	tpch	10	coldruns	q22	5	8.48
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q03	1	39.80
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q04	1	24.46
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q05	1	47.47
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q06	1	15.22
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q07	1	20.96
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q08	1	23.66
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q09	1	106.25
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q10	1	35.68
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q11	1	4.04
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q12	1	19.96
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q13	1	23.33
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q14	1	10.27
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q15	1	22.12
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q16	1	44.98
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q18	1	70.60
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q19	1	19.58
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q21	1	59.30
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q22	1	5.33
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q03	2	24.48
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q04	2	18.13
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q05	2	30.21
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q06	2	11.15
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q07	2	20.87
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q08	2	18.42
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q09	2	104.08
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q10	2	32.01
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q11	2	3.40
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q12	2	18.65
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q13	2	21.68
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q14	2	10.23
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q15	2	21.93
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q16	2	44.73
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q18	2	65.00
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q19	2	17.30
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q21	2	59.19
+citusdata	snapshot-2014-04-07	tpch	10	warmup	q22	2	5.38
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q03	1	21.04
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q04	1	18.16
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q05	1	30.37
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q06	1	11.17
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q07	1	20.87
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q08	1	18.35
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q09	1	103.93
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q10	1	34.54
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q11	1	3.44
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q12	1	17.50
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q13	1	21.63
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q14	1	10.24
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q15	1	21.97
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q16	1	44.71
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q18	1	64.54
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q19	1	17.30
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q21	1	59.06
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q22	1	5.37
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q03	2	21.37
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q04	2	18.12
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q05	2	30.33
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q06	2	11.14
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q07	2	20.89
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q08	2	18.36
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q09	2	103.59
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q10	2	33.32
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q11	2	3.42
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q12	2	17.52
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q13	2	21.65
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q14	2	10.24
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q15	2	22.02
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q16	2	44.92
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q18	2	77.86
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q19	2	17.31
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q21	2	58.99
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q22	2	5.36
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q03	3	26.17
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q04	3	18.17
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q05	3	30.82
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q06	3	11.13
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q07	3	20.88
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q08	3	18.49
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q09	3	104.18
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q10	3	31.93
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q11	3	3.43
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q12	3	17.51
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q13	3	21.66
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q14	3	10.23
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q15	3	21.95
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q16	3	44.78
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q18	3	78.27
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q19	3	17.34
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q21	3	59.13
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q22	3	5.36
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q03	4	26.89
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q04	4	18.17
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q05	4	30.29
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q06	4	11.11
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q07	4	20.87
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q08	4	18.99
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q09	4	104.51
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q10	4	31.85
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q11	4	3.42
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q12	4	17.50
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q13	4	21.64
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q14	4	10.30
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q15	4	21.93
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q16	4	44.69
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q18	4	63.85
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q19	4	17.32
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q21	4	58.90
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q22	4	5.35
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q03	5	21.03
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q04	5	18.09
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q05	5	30.52
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q06	5	11.15
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q07	5	20.83
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q08	5	18.35
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q09	5	105.19
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q10	5	31.93
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q11	5	3.41
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q12	5	17.49
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q13	5	21.66
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q14	5	10.20
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q15	5	21.93
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q16	5	44.73
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q18	5	78.65
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q19	5	17.33
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q21	5	60.92
+citusdata	snapshot-2014-04-07	tpch	10	hotruns	q22	5	5.38
+postgres	9.3.4	tpch	1	coldruns	q01	1	18.14
+postgres	9.3.4	tpch	1	coldruns	q02	1	2.68
+postgres	9.3.4	tpch	1	coldruns	q03	1	9.46
+postgres	9.3.4	tpch	1	coldruns	q04	1	9.21
+postgres	9.3.4	tpch	1	coldruns	q05	1	9.49
+postgres	9.3.4	tpch	1	coldruns	q06	1	7.20
+postgres	9.3.4	tpch	1	coldruns	q07	1	9.61
+postgres	9.3.4	tpch	1	coldruns	q08	1	9.62
+postgres	9.3.4	tpch	1	coldruns	q09	1	39.79
+postgres	9.3.4	tpch	1	coldruns	q10	1	10.77
+postgres	9.3.4	tpch	1	coldruns	q11	1	1.82
+postgres	9.3.4	tpch	1	coldruns	q12	1	10.92
+postgres	9.3.4	tpch	1	coldruns	q13	1	2.99
+postgres	9.3.4	tpch	1	coldruns	q14	1	7.65
+postgres	9.3.4	tpch	1	coldruns	q15	1	8.42
+postgres	9.3.4	tpch	1	coldruns	q16	1	4.09
+postgres	9.3.4	tpch	1	coldruns	q18	1	13.62
+postgres	9.3.4	tpch	1	coldruns	q19	1	8.02
+postgres	9.3.4	tpch	1	coldruns	q21	1	156.72
+postgres	9.3.4	tpch	1	coldruns	q22	1	2.56
+postgres	9.3.4	tpch	1	coldruns	q01	2	17.01
+postgres	9.3.4	tpch	1	coldruns	q02	2	2.49
+postgres	9.3.4	tpch	1	coldruns	q03	2	9.59
+postgres	9.3.4	tpch	1	coldruns	q04	2	9.25
+postgres	9.3.4	tpch	1	coldruns	q05	2	9.43
+postgres	9.3.4	tpch	1	coldruns	q06	2	7.10
+postgres	9.3.4	tpch	1	coldruns	q07	2	9.48
+postgres	9.3.4	tpch	1	coldruns	q08	2	9.59
+postgres	9.3.4	tpch	1	coldruns	q09	2	38.82
+postgres	9.3.4	tpch	1	coldruns	q10	2	12.09
+postgres	9.3.4	tpch	1	coldruns	q11	2	1.87
+postgres	9.3.4	tpch	1	coldruns	q12	2	10.70
+postgres	9.3.4	tpch	1	coldruns	q13	2	2.98
+postgres	9.3.4	tpch	1	coldruns	q14	2	7.73
+postgres	9.3.4	tpch	1	coldruns	q15	2	9.05
+postgres	9.3.4	tpch	1	coldruns	q16	2	4.40
+postgres	9.3.4	tpch	1	coldruns	q18	2	14.37
+postgres	9.3.4	tpch	1	coldruns	q19	2	7.62
+postgres	9.3.4	tpch	1	coldruns	q21	2	154.96
+postgres	9.3.4	tpch	1	coldruns	q22	2	2.68
+postgres	9.3.4	tpch	1	coldruns	q01	3	16.93
+postgres	9.3.4	tpch	1	coldruns	q02	3	2.57
+postgres	9.3.4	tpch	1	coldruns	q03	3	10.35
+postgres	9.3.4	tpch	1	coldruns	q04	3	9.32
+postgres	9.3.4	tpch	1	coldruns	q05	3	9.39
+postgres	9.3.4	tpch	1	coldruns	q06	3	7.34
+postgres	9.3.4	tpch	1	coldruns	q07	3	9.98
+postgres	9.3.4	tpch	1	coldruns	q08	3	9.68
+postgres	9.3.4	tpch	1	coldruns	q09	3	40.23
+postgres	9.3.4	tpch	1	coldruns	q10	3	11.79
+postgres	9.3.4	tpch	1	coldruns	q11	3	1.93
+postgres	9.3.4	tpch	1	coldruns	q12	3	10.82
+postgres	9.3.4	tpch	1	coldruns	q13	3	3.19
+postgres	9.3.4	tpch	1	coldruns	q14	3	7.60
+postgres	9.3.4	tpch	1	coldruns	q15	3	8.44
+postgres	9.3.4	tpch	1	coldruns	q16	3	4.12
+postgres	9.3.4	tpch	1	coldruns	q18	3	14.81
+postgres	9.3.4	tpch	1	coldruns	q19	3	7.72
+postgres	9.3.4	tpch	1	coldruns	q21	3	153.29
+postgres	9.3.4	tpch	1	coldruns	q22	3	2.66
+postgres	9.3.4	tpch	1	coldruns	q01	4	19.99
+postgres	9.3.4	tpch	1	coldruns	q02	4	3.15
+postgres	9.3.4	tpch	1	coldruns	q03	4	9.56
+postgres	9.3.4	tpch	1	coldruns	q04	4	9.28
+postgres	9.3.4	tpch	1	coldruns	q05	4	11.42
+postgres	9.3.4	tpch	1	coldruns	q06	4	7.26
+postgres	9.3.4	tpch	1	coldruns	q07	4	9.57
+postgres	9.3.4	tpch	1	coldruns	q08	4	9.59
+postgres	9.3.4	tpch	1	coldruns	q09	4	39.11
+postgres	9.3.4	tpch	1	coldruns	q10	4	11.78
+postgres	9.3.4	tpch	1	coldruns	q11	4	1.88
+postgres	9.3.4	tpch	1	coldruns	q12	4	10.70
+postgres	9.3.4	tpch	1	coldruns	q13	4	2.96
+postgres	9.3.4	tpch	1	coldruns	q14	4	7.64
+postgres	9.3.4	tpch	1	coldruns	q15	4	8.45
+postgres	9.3.4	tpch	1	coldruns	q16	4	4.23
+postgres	9.3.4	tpch	1	coldruns	q18	4	13.85
+postgres	9.3.4	tpch	1	coldruns	q19	4	7.64
+postgres	9.3.4	tpch	1	coldruns	q21	4	152.93
+postgres	9.3.4	tpch	1	coldruns	q22	4	2.58
+postgres	9.3.4	tpch	1	coldruns	q01	5	16.82
+postgres	9.3.4	tpch	1	coldruns	q02	5	2.58
+postgres	9.3.4	tpch	1	coldruns	q03	5	10.17
+postgres	9.3.4	tpch	1	coldruns	q04	5	9.27
+postgres	9.3.4	tpch	1	coldruns	q05	5	9.59
+postgres	9.3.4	tpch	1	coldruns	q06	5	7.11
+postgres	9.3.4	tpch	1	coldruns	q07	5	9.97
+postgres	9.3.4	tpch	1	coldruns	q08	5	9.72
+postgres	9.3.4	tpch	1	coldruns	q09	5	39.11
+postgres	9.3.4	tpch	1	coldruns	q10	5	11.48
+postgres	9.3.4	tpch	1	coldruns	q11	5	1.95
+postgres	9.3.4	tpch	1	coldruns	q12	5	10.99
+postgres	9.3.4	tpch	1	coldruns	q13	5	2.84
+postgres	9.3.4	tpch	1	coldruns	q14	5	7.72
+postgres	9.3.4	tpch	1	coldruns	q15	5	8.61
+postgres	9.3.4	tpch	1	coldruns	q16	5	4.19
+postgres	9.3.4	tpch	1	coldruns	q18	5	13.56
+postgres	9.3.4	tpch	1	coldruns	q19	5	7.70
+postgres	9.3.4	tpch	1	coldruns	q21	5	154.93
+postgres	9.3.4	tpch	1	coldruns	q22	5	2.75
+postgres	9.3.4	tpch	1	warmup	q01	1	16.85
+postgres	9.3.4	tpch	1	warmup	q02	1	2.32
+postgres	9.3.4	tpch	1	warmup	q03	1	2.09
+postgres	9.3.4	tpch	1	warmup	q04	1	1.99
+postgres	9.3.4	tpch	1	warmup	q05	1	1.73
+postgres	9.3.4	tpch	1	warmup	q06	1	1.08
+postgres	9.3.4	tpch	1	warmup	q07	1	1.72
+postgres	9.3.4	tpch	1	warmup	q08	1	1.11
+postgres	9.3.4	tpch	1	warmup	q09	1	7.80
+postgres	9.3.4	tpch	1	warmup	q10	1	3.10
+postgres	9.3.4	tpch	1	warmup	q11	1	0.23
+postgres	9.3.4	tpch	1	warmup	q12	1	1.55
+postgres	9.3.4	tpch	1	warmup	q13	1	1.81
+postgres	9.3.4	tpch	1	warmup	q14	1	1.01
+postgres	9.3.4	tpch	1	warmup	q15	1	2.23
+postgres	9.3.4	tpch	1	warmup	q16	1	3.33
+postgres	9.3.4	tpch	1	warmup	q18	1	6.01
+postgres	9.3.4	tpch	1	warmup	q19	1	1.44
+postgres	9.3.4	tpch	1	warmup	q21	1	59.57
+postgres	9.3.4	tpch	1	warmup	q22	1	0.56
+postgres	9.3.4	tpch	1	warmup	q01	2	17.74
+postgres	9.3.4	tpch	1	warmup	q02	2	0.31
+postgres	9.3.4	tpch	1	warmup	q03	2	1.93
+postgres	9.3.4	tpch	1	warmup	q04	2	1.96
+postgres	9.3.4	tpch	1	warmup	q05	2	1.70
+postgres	9.3.4	tpch	1	warmup	q06	2	1.09
+postgres	9.3.4	tpch	1	warmup	q07	2	1.73
+postgres	9.3.4	tpch	1	warmup	q08	2	1.06
+postgres	9.3.4	tpch	1	warmup	q09	2	7.68
+postgres	9.3.4	tpch	1	warmup	q10	2	3.02
+postgres	9.3.4	tpch	1	warmup	q11	2	0.23
+postgres	9.3.4	tpch	1	warmup	q12	2	1.56
+postgres	9.3.4	tpch	1	warmup	q13	2	1.77
+postgres	9.3.4	tpch	1	warmup	q14	2	1.01
+postgres	9.3.4	tpch	1	warmup	q15	2	2.18
+postgres	9.3.4	tpch	1	warmup	q16	2	3.27
+postgres	9.3.4	tpch	1	warmup	q18	2	5.95
+postgres	9.3.4	tpch	1	warmup	q19	2	1.48
+postgres	9.3.4	tpch	1	warmup	q21	2	4.10
+postgres	9.3.4	tpch	1	warmup	q22	2	0.52
+postgres	9.3.4	tpch	1	hotruns	q01	1	15.68
+postgres	9.3.4	tpch	1	hotruns	q02	1	0.31
+postgres	9.3.4	tpch	1	hotruns	q03	1	1.94
+postgres	9.3.4	tpch	1	hotruns	q04	1	1.96
+postgres	9.3.4	tpch	1	hotruns	q05	1	1.70
+postgres	9.3.4	tpch	1	hotruns	q06	1	1.10
+postgres	9.3.4	tpch	1	hotruns	q07	1	1.71
+postgres	9.3.4	tpch	1	hotruns	q08	1	1.06
+postgres	9.3.4	tpch	1	hotruns	q09	1	7.68
+postgres	9.3.4	tpch	1	hotruns	q10	1	3.02
+postgres	9.3.4	tpch	1	hotruns	q11	1	0.23
+postgres	9.3.4	tpch	1	hotruns	q12	1	1.56
+postgres	9.3.4	tpch	1	hotruns	q13	1	1.75
+postgres	9.3.4	tpch	1	hotruns	q14	1	1.01
+postgres	9.3.4	tpch	1	hotruns	q15	1	2.09
+postgres	9.3.4	tpch	1	hotruns	q16	1	3.29
+postgres	9.3.4	tpch	1	hotruns	q18	1	5.92
+postgres	9.3.4	tpch	1	hotruns	q19	1	1.44
+postgres	9.3.4	tpch	1	hotruns	q21	1	3.98
+postgres	9.3.4	tpch	1	hotruns	q22	1	0.52
+postgres	9.3.4	tpch	1	hotruns	q01	2	15.71
+postgres	9.3.4	tpch	1	hotruns	q02	2	0.31
+postgres	9.3.4	tpch	1	hotruns	q03	2	1.99
+postgres	9.3.4	tpch	1	hotruns	q04	2	1.96
+postgres	9.3.4	tpch	1	hotruns	q05	2	1.69
+postgres	9.3.4	tpch	1	hotruns	q06	2	1.09
+postgres	9.3.4	tpch	1	hotruns	q07	2	1.73
+postgres	9.3.4	tpch	1	hotruns	q08	2	1.08
+postgres	9.3.4	tpch	1	hotruns	q09	2	7.67
+postgres	9.3.4	tpch	1	hotruns	q10	2	3.02
+postgres	9.3.4	tpch	1	hotruns	q11	2	0.23
+postgres	9.3.4	tpch	1	hotruns	q12	2	1.55
+postgres	9.3.4	tpch	1	hotruns	q13	2	1.76
+postgres	9.3.4	tpch	1	hotruns	q14	2	1.01
+postgres	9.3.4	tpch	1	hotruns	q15	2	2.09
+postgres	9.3.4	tpch	1	hotruns	q16	2	3.26
+postgres	9.3.4	tpch	1	hotruns	q18	2	5.97
+postgres	9.3.4	tpch	1	hotruns	q19	2	1.42
+postgres	9.3.4	tpch	1	hotruns	q21	2	3.99
+postgres	9.3.4	tpch	1	hotruns	q22	2	0.53
+postgres	9.3.4	tpch	1	hotruns	q01	3	15.71
+postgres	9.3.4	tpch	1	hotruns	q02	3	0.31
+postgres	9.3.4	tpch	1	hotruns	q03	3	1.93
+postgres	9.3.4	tpch	1	hotruns	q04	3	1.97
+postgres	9.3.4	tpch	1	hotruns	q05	3	1.71
+postgres	9.3.4	tpch	1	hotruns	q06	3	1.09
+postgres	9.3.4	tpch	1	hotruns	q07	3	1.70
+postgres	9.3.4	tpch	1	hotruns	q08	3	1.06
+postgres	9.3.4	tpch	1	hotruns	q09	3	7.65
+postgres	9.3.4	tpch	1	hotruns	q10	3	3.04
+postgres	9.3.4	tpch	1	hotruns	q11	3	0.23
+postgres	9.3.4	tpch	1	hotruns	q12	3	1.57
+postgres	9.3.4	tpch	1	hotruns	q13	3	1.77
+postgres	9.3.4	tpch	1	hotruns	q14	3	1.00
+postgres	9.3.4	tpch	1	hotruns	q15	3	2.10
+postgres	9.3.4	tpch	1	hotruns	q16	3	3.28
+postgres	9.3.4	tpch	1	hotruns	q18	3	5.98
+postgres	9.3.4	tpch	1	hotruns	q19	3	1.44
+postgres	9.3.4	tpch	1	hotruns	q21	3	3.99
+postgres	9.3.4	tpch	1	hotruns	q22	3	0.52
+postgres	9.3.4	tpch	1	hotruns	q01	4	15.72
+postgres	9.3.4	tpch	1	hotruns	q02	4	0.32
+postgres	9.3.4	tpch	1	hotruns	q03	4	1.95
+postgres	9.3.4	tpch	1	hotruns	q04	4	1.96
+postgres	9.3.4	tpch	1	hotruns	q05	4	1.71
+postgres	9.3.4	tpch	1	hotruns	q06	4	1.10
+postgres	9.3.4	tpch	1	hotruns	q07	4	1.72
+postgres	9.3.4	tpch	1	hotruns	q08	4	1.07
+postgres	9.3.4	tpch	1	hotruns	q09	4	7.65
+postgres	9.3.4	tpch	1	hotruns	q10	4	3.01
+postgres	9.3.4	tpch	1	hotruns	q11	4	0.23
+postgres	9.3.4	tpch	1	hotruns	q12	4	1.57
+postgres	9.3.4	tpch	1	hotruns	q13	4	1.76
+postgres	9.3.4	tpch	1	hotruns	q14	4	1.01
+postgres	9.3.4	tpch	1	hotruns	q15	4	2.06
+postgres	9.3.4	tpch	1	hotruns	q16	4	3.29
+postgres	9.3.4	tpch	1	hotruns	q18	4	5.95
+postgres	9.3.4	tpch	1	hotruns	q19	4	1.43
+postgres	9.3.4	tpch	1	hotruns	q21	4	3.98
+postgres	9.3.4	tpch	1	hotruns	q22	4	0.53
+postgres	9.3.4	tpch	1	hotruns	q01	5	15.65
+postgres	9.3.4	tpch	1	hotruns	q02	5	0.31
+postgres	9.3.4	tpch	1	hotruns	q03	5	1.94
+postgres	9.3.4	tpch	1	hotruns	q04	5	1.97
+postgres	9.3.4	tpch	1	hotruns	q05	5	1.70
+postgres	9.3.4	tpch	1	hotruns	q06	5	1.09
+postgres	9.3.4	tpch	1	hotruns	q07	5	1.72
+postgres	9.3.4	tpch	1	hotruns	q08	5	1.07
+postgres	9.3.4	tpch	1	hotruns	q09	5	7.65
+postgres	9.3.4	tpch	1	hotruns	q10	5	3.00
+postgres	9.3.4	tpch	1	hotruns	q11	5	0.22
+postgres	9.3.4	tpch	1	hotruns	q12	5	1.56
+postgres	9.3.4	tpch	1	hotruns	q13	5	1.77
+postgres	9.3.4	tpch	1	hotruns	q14	5	1.01
+postgres	9.3.4	tpch	1	hotruns	q15	5	2.28
+postgres	9.3.4	tpch	1	hotruns	q16	5	3.26
+postgres	9.3.4	tpch	1	hotruns	q18	5	5.95
+postgres	9.3.4	tpch	1	hotruns	q19	5	1.43
+postgres	9.3.4	tpch	1	hotruns	q21	5	3.98
+postgres	9.3.4	tpch	1	hotruns	q22	5	0.52
+postgres	9.3.4	tpch	5	coldruns	q01	1	82.34
+postgres	9.3.4	tpch	5	coldruns	q02	1	11.73
+postgres	9.3.4	tpch	5	coldruns	q03	1	55.33
+postgres	9.3.4	tpch	5	coldruns	q04	1	54.24
+postgres	9.3.4	tpch	5	coldruns	q05	1	54.63
+postgres	9.3.4	tpch	5	coldruns	q06	1	37.79
+postgres	9.3.4	tpch	5	coldruns	q07	1	54.69
+postgres	9.3.4	tpch	5	coldruns	q08	1	52.42
+postgres	9.3.4	tpch	5	coldruns	q09	1	672.81
+postgres	9.3.4	tpch	5	coldruns	q10	1	63.49
+postgres	9.3.4	tpch	5	coldruns	q11	1	7.09
+postgres	9.3.4	tpch	5	coldruns	q12	1	58.67
+postgres	9.3.4	tpch	5	coldruns	q13	1	14.19
+postgres	9.3.4	tpch	5	coldruns	q14	1	40.77
+postgres	9.3.4	tpch	5	coldruns	q15	1	43.26
+postgres	9.3.4	tpch	5	coldruns	q16	1	20.94
+postgres	9.3.4	tpch	5	coldruns	q18	1	81.09
+postgres	9.3.4	tpch	5	coldruns	q19	1	41.69
+postgres	9.3.4	tpch	5	coldruns	q21	1	1291.13
+postgres	9.3.4	tpch	5	coldruns	q22	1	12.11
+postgres	9.3.4	tpch	5	coldruns	q01	2	82.45
+postgres	9.3.4	tpch	5	coldruns	q02	2	11.49
+postgres	9.3.4	tpch	5	coldruns	q03	2	54.82
+postgres	9.3.4	tpch	5	coldruns	q04	2	54.92
+postgres	9.3.4	tpch	5	coldruns	q05	2	54.71
+postgres	9.3.4	tpch	5	coldruns	q06	2	37.69
+postgres	9.3.4	tpch	5	coldruns	q07	2	53.25
+postgres	9.3.4	tpch	5	coldruns	q08	2	52.70
+postgres	9.3.4	tpch	5	coldruns	q09	2	670.67
+postgres	9.3.4	tpch	5	coldruns	q10	2	60.33
+postgres	9.3.4	tpch	5	coldruns	q11	2	7.07
+postgres	9.3.4	tpch	5	coldruns	q12	2	58.57
+postgres	9.3.4	tpch	5	coldruns	q13	2	14.38
+postgres	9.3.4	tpch	5	coldruns	q14	2	41.18
+postgres	9.3.4	tpch	5	coldruns	q15	2	43.28
+postgres	9.3.4	tpch	5	coldruns	q16	2	20.85
+postgres	9.3.4	tpch	5	coldruns	q18	2	80.58
+postgres	9.3.4	tpch	5	coldruns	q19	2	41.43
+postgres	9.3.4	tpch	5	coldruns	q21	2	1312.44
+postgres	9.3.4	tpch	5	coldruns	q22	2	13.63
+postgres	9.3.4	tpch	5	coldruns	q01	3	81.69
+postgres	9.3.4	tpch	5	coldruns	q02	3	12.22
+postgres	9.3.4	tpch	5	coldruns	q03	3	54.83
+postgres	9.3.4	tpch	5	coldruns	q04	3	55.74
+postgres	9.3.4	tpch	5	coldruns	q05	3	56.79
+postgres	9.3.4	tpch	5	coldruns	q06	3	37.64
+postgres	9.3.4	tpch	5	coldruns	q07	3	53.98
+postgres	9.3.4	tpch	5	coldruns	q08	3	50.53
+postgres	9.3.4	tpch	5	coldruns	q09	3	668.55
+postgres	9.3.4	tpch	5	coldruns	q10	3	62.12
+postgres	9.3.4	tpch	5	coldruns	q11	3	7.40
+postgres	9.3.4	tpch	5	coldruns	q12	3	60.66
+postgres	9.3.4	tpch	5	coldruns	q13	3	14.53
+postgres	9.3.4	tpch	5	coldruns	q14	3	40.65
+postgres	9.3.4	tpch	5	coldruns	q15	3	43.05
+postgres	9.3.4	tpch	5	coldruns	q16	3	21.03
+postgres	9.3.4	tpch	5	coldruns	q18	3	79.51
+postgres	9.3.4	tpch	5	coldruns	q19	3	41.06
+postgres	9.3.4	tpch	5	coldruns	q21	3	1323.89
+postgres	9.3.4	tpch	5	coldruns	q22	3	11.44
+postgres	9.3.4	tpch	5	coldruns	q01	4	81.51
+postgres	9.3.4	tpch	5	coldruns	q02	4	11.40
+postgres	9.3.4	tpch	5	coldruns	q03	4	54.83
+postgres	9.3.4	tpch	5	coldruns	q04	4	53.32
+postgres	9.3.4	tpch	5	coldruns	q05	4	54.94
+postgres	9.3.4	tpch	5	coldruns	q06	4	38.08
+postgres	9.3.4	tpch	5	coldruns	q07	4	55.73
+postgres	9.3.4	tpch	5	coldruns	q08	4	51.33
+postgres	9.3.4	tpch	5	coldruns	q09	4	678.75
+postgres	9.3.4	tpch	5	coldruns	q10	4	64.15
+postgres	9.3.4	tpch	5	coldruns	q11	4	7.05
+postgres	9.3.4	tpch	5	coldruns	q12	4	58.85
+postgres	9.3.4	tpch	5	coldruns	q13	4	15.79
+postgres	9.3.4	tpch	5	coldruns	q14	4	40.11
+postgres	9.3.4	tpch	5	coldruns	q15	4	42.66
+postgres	9.3.4	tpch	5	coldruns	q16	4	21.26
+postgres	9.3.4	tpch	5	coldruns	q18	4	81.51
+postgres	9.3.4	tpch	5	coldruns	q19	4	40.57
+postgres	9.3.4	tpch	5	coldruns	q21	4	1302.75
+postgres	9.3.4	tpch	5	coldruns	q22	4	11.98
+postgres	9.3.4	tpch	5	coldruns	q01	5	84.09
+postgres	9.3.4	tpch	5	coldruns	q02	5	12.19
+postgres	9.3.4	tpch	5	coldruns	q03	5	56.13
+postgres	9.3.4	tpch	5	coldruns	q04	5	53.52
+postgres	9.3.4	tpch	5	coldruns	q05	5	55.67
+postgres	9.3.4	tpch	5	coldruns	q06	5	37.67
+postgres	9.3.4	tpch	5	coldruns	q07	5	57.07
+postgres	9.3.4	tpch	5	coldruns	q08	5	50.86
+postgres	9.3.4	tpch	5	coldruns	q09	5	673.47
+postgres	9.3.4	tpch	5	coldruns	q10	5	61.33
+postgres	9.3.4	tpch	5	coldruns	q11	5	7.12
+postgres	9.3.4	tpch	5	coldruns	q12	5	58.68
+postgres	9.3.4	tpch	5	coldruns	q13	5	14.35
+postgres	9.3.4	tpch	5	coldruns	q14	5	40.77
+postgres	9.3.4	tpch	5	coldruns	q15	5	43.28
+postgres	9.3.4	tpch	5	coldruns	q16	5	21.19
+postgres	9.3.4	tpch	5	coldruns	q18	5	78.73
+postgres	9.3.4	tpch	5	coldruns	q19	5	40.92
+postgres	9.3.4	tpch	5	coldruns	q21	5	1308.08
+postgres	9.3.4	tpch	5	coldruns	q22	5	11.20
+postgres	9.3.4	tpch	5	warmup	q01	1	81.34
+postgres	9.3.4	tpch	5	warmup	q02	1	13.27
+postgres	9.3.4	tpch	5	warmup	q03	1	10.21
+postgres	9.3.4	tpch	5	warmup	q04	1	9.76
+postgres	9.3.4	tpch	5	warmup	q05	1	11.40
+postgres	9.3.4	tpch	5	warmup	q06	1	5.41
+postgres	9.3.4	tpch	5	warmup	q07	1	8.90
+postgres	9.3.4	tpch	5	warmup	q08	1	6.92
+postgres	9.3.4	tpch	5	warmup	q09	1	88.48
+postgres	9.3.4	tpch	5	warmup	q10	1	15.39
+postgres	9.3.4	tpch	5	warmup	q11	1	1.32
+postgres	9.3.4	tpch	5	warmup	q12	1	7.81
+postgres	9.3.4	tpch	5	warmup	q13	1	9.63
+postgres	9.3.4	tpch	5	warmup	q14	1	5.05
+postgres	9.3.4	tpch	5	warmup	q15	1	10.66
+postgres	9.3.4	tpch	5	warmup	q16	1	19.96
+postgres	9.3.4	tpch	5	warmup	q18	1	30.50
+postgres	9.3.4	tpch	5	warmup	q19	1	7.18
+postgres	9.3.4	tpch	5	warmup	q21	1	418.99
+postgres	9.3.4	tpch	5	warmup	q22	1	2.80
+postgres	9.3.4	tpch	5	warmup	q01	2	78.22
+postgres	9.3.4	tpch	5	warmup	q02	2	2.08
+postgres	9.3.4	tpch	5	warmup	q03	2	11.85
+postgres	9.3.4	tpch	5	warmup	q04	2	9.79
+postgres	9.3.4	tpch	5	warmup	q05	2	11.39
+postgres	9.3.4	tpch	5	warmup	q06	2	5.39
+postgres	9.3.4	tpch	5	warmup	q07	2	8.81
+postgres	9.3.4	tpch	5	warmup	q08	2	6.91
+postgres	9.3.4	tpch	5	warmup	q09	2	53.73
+postgres	9.3.4	tpch	5	warmup	q10	2	15.39
+postgres	9.3.4	tpch	5	warmup	q11	2	1.27
+postgres	9.3.4	tpch	5	warmup	q12	2	7.71
+postgres	9.3.4	tpch	5	warmup	q13	2	9.62
+postgres	9.3.4	tpch	5	warmup	q14	2	5.00
+postgres	9.3.4	tpch	5	warmup	q15	2	10.47
+postgres	9.3.4	tpch	5	warmup	q16	2	19.80
+postgres	9.3.4	tpch	5	warmup	q18	2	34.41
+postgres	9.3.4	tpch	5	warmup	q19	2	7.15
+postgres	9.3.4	tpch	5	warmup	q21	2	21.41
+postgres	9.3.4	tpch	5	warmup	q22	2	2.76
+postgres	9.3.4	tpch	5	hotruns	q01	1	78.96
+postgres	9.3.4	tpch	5	hotruns	q02	1	2.07
+postgres	9.3.4	tpch	5	hotruns	q03	1	9.99
+postgres	9.3.4	tpch	5	hotruns	q04	1	9.77
+postgres	9.3.4	tpch	5	hotruns	q05	1	11.37
+postgres	9.3.4	tpch	5	hotruns	q06	1	5.43
+postgres	9.3.4	tpch	5	hotruns	q07	1	8.82
+postgres	9.3.4	tpch	5	hotruns	q08	1	6.95
+postgres	9.3.4	tpch	5	hotruns	q09	1	55.42
+postgres	9.3.4	tpch	5	hotruns	q10	1	16.61
+postgres	9.3.4	tpch	5	hotruns	q11	1	1.28
+postgres	9.3.4	tpch	5	hotruns	q12	1	7.71
+postgres	9.3.4	tpch	5	hotruns	q13	1	9.57
+postgres	9.3.4	tpch	5	hotruns	q14	1	5.01
+postgres	9.3.4	tpch	5	hotruns	q15	1	10.49
+postgres	9.3.4	tpch	5	hotruns	q16	1	19.82
+postgres	9.3.4	tpch	5	hotruns	q18	1	30.06
+postgres	9.3.4	tpch	5	hotruns	q19	1	7.20
+postgres	9.3.4	tpch	5	hotruns	q21	1	26.54
+postgres	9.3.4	tpch	5	hotruns	q22	1	2.83
+postgres	9.3.4	tpch	5	hotruns	q01	2	78.50
+postgres	9.3.4	tpch	5	hotruns	q02	2	2.09
+postgres	9.3.4	tpch	5	hotruns	q03	2	10.08
+postgres	9.3.4	tpch	5	hotruns	q04	2	9.92
+postgres	9.3.4	tpch	5	hotruns	q05	2	11.48
+postgres	9.3.4	tpch	5	hotruns	q06	2	5.40
+postgres	9.3.4	tpch	5	hotruns	q07	2	9.47
+postgres	9.3.4	tpch	5	hotruns	q08	2	6.91
+postgres	9.3.4	tpch	5	hotruns	q09	2	55.31
+postgres	9.3.4	tpch	5	hotruns	q10	2	15.34
+postgres	9.3.4	tpch	5	hotruns	q11	2	1.28
+postgres	9.3.4	tpch	5	hotruns	q12	2	7.76
+postgres	9.3.4	tpch	5	hotruns	q13	2	9.60
+postgres	9.3.4	tpch	5	hotruns	q14	2	4.99
+postgres	9.3.4	tpch	5	hotruns	q15	2	10.46
+postgres	9.3.4	tpch	5	hotruns	q16	2	19.78
+postgres	9.3.4	tpch	5	hotruns	q18	2	30.08
+postgres	9.3.4	tpch	5	hotruns	q19	2	7.14
+postgres	9.3.4	tpch	5	hotruns	q21	2	21.54
+postgres	9.3.4	tpch	5	hotruns	q22	2	2.78
+postgres	9.3.4	tpch	5	hotruns	q01	3	78.76
+postgres	9.3.4	tpch	5	hotruns	q02	3	2.09
+postgres	9.3.4	tpch	5	hotruns	q03	3	10.21
+postgres	9.3.4	tpch	5	hotruns	q04	3	9.93
+postgres	9.3.4	tpch	5	hotruns	q05	3	11.55
+postgres	9.3.4	tpch	5	hotruns	q06	3	5.45
+postgres	9.3.4	tpch	5	hotruns	q07	3	8.84
+postgres	9.3.4	tpch	5	hotruns	q08	3	6.93
+postgres	9.3.4	tpch	5	hotruns	q09	3	55.90
+postgres	9.3.4	tpch	5	hotruns	q10	3	15.34
+postgres	9.3.4	tpch	5	hotruns	q11	3	1.28
+postgres	9.3.4	tpch	5	hotruns	q12	3	7.71
+postgres	9.3.4	tpch	5	hotruns	q13	3	9.61
+postgres	9.3.4	tpch	5	hotruns	q14	3	5.02
+postgres	9.3.4	tpch	5	hotruns	q15	3	10.56
+postgres	9.3.4	tpch	5	hotruns	q16	3	19.85
+postgres	9.3.4	tpch	5	hotruns	q18	3	30.09
+postgres	9.3.4	tpch	5	hotruns	q19	3	7.14
+postgres	9.3.4	tpch	5	hotruns	q21	3	21.39
+postgres	9.3.4	tpch	5	hotruns	q22	3	2.78
+postgres	9.3.4	tpch	5	hotruns	q01	4	78.54
+postgres	9.3.4	tpch	5	hotruns	q02	4	2.08
+postgres	9.3.4	tpch	5	hotruns	q03	4	10.03
+postgres	9.3.4	tpch	5	hotruns	q04	4	9.74
+postgres	9.3.4	tpch	5	hotruns	q05	4	11.39
+postgres	9.3.4	tpch	5	hotruns	q06	4	5.39
+postgres	9.3.4	tpch	5	hotruns	q07	4	8.81
+postgres	9.3.4	tpch	5	hotruns	q08	4	6.92
+postgres	9.3.4	tpch	5	hotruns	q09	4	54.28
+postgres	9.3.4	tpch	5	hotruns	q10	4	15.31
+postgres	9.3.4	tpch	5	hotruns	q11	4	1.28
+postgres	9.3.4	tpch	5	hotruns	q12	4	7.73
+postgres	9.3.4	tpch	5	hotruns	q13	4	9.56
+postgres	9.3.4	tpch	5	hotruns	q14	4	5.02
+postgres	9.3.4	tpch	5	hotruns	q15	4	10.50
+postgres	9.3.4	tpch	5	hotruns	q16	4	19.92
+postgres	9.3.4	tpch	5	hotruns	q18	4	30.21
+postgres	9.3.4	tpch	5	hotruns	q19	4	7.14
+postgres	9.3.4	tpch	5	hotruns	q21	4	21.36
+postgres	9.3.4	tpch	5	hotruns	q22	4	2.78
+postgres	9.3.4	tpch	5	hotruns	q01	5	78.55
+postgres	9.3.4	tpch	5	hotruns	q02	5	2.07
+postgres	9.3.4	tpch	5	hotruns	q03	5	9.99
+postgres	9.3.4	tpch	5	hotruns	q04	5	9.75
+postgres	9.3.4	tpch	5	hotruns	q05	5	11.40
+postgres	9.3.4	tpch	5	hotruns	q06	5	5.40
+postgres	9.3.4	tpch	5	hotruns	q07	5	8.80
+postgres	9.3.4	tpch	5	hotruns	q08	5	6.93
+postgres	9.3.4	tpch	5	hotruns	q09	5	55.31
+postgres	9.3.4	tpch	5	hotruns	q10	5	15.32
+postgres	9.3.4	tpch	5	hotruns	q11	5	1.27
+postgres	9.3.4	tpch	5	hotruns	q12	5	7.75
+postgres	9.3.4	tpch	5	hotruns	q13	5	9.59
+postgres	9.3.4	tpch	5	hotruns	q14	5	5.01
+postgres	9.3.4	tpch	5	hotruns	q15	5	10.47
+postgres	9.3.4	tpch	5	hotruns	q16	5	19.84
+postgres	9.3.4	tpch	5	hotruns	q18	5	33.10
+postgres	9.3.4	tpch	5	hotruns	q19	5	7.17
+postgres	9.3.4	tpch	5	hotruns	q21	5	21.42
+postgres	9.3.4	tpch	5	hotruns	q22	5	2.77
+postgres	9.3.4	tpch	10	coldruns	q01	1	167.30
+postgres	9.3.4	tpch	10	coldruns	q02	1	24.49
+postgres	9.3.4	tpch	10	coldruns	q03	1	115.78
+postgres	9.3.4	tpch	10	coldruns	q04	1	122.20
+postgres	9.3.4	tpch	10	coldruns	q05	1	123.76
+postgres	9.3.4	tpch	10	coldruns	q06	1	74.11
+postgres	9.3.4	tpch	10	coldruns	q07	1	108.11
+postgres	9.3.4	tpch	10	coldruns	q08	1	100.77
+postgres	9.3.4	tpch	10	coldruns	q09	1	1761.44
+postgres	9.3.4	tpch	10	coldruns	q10	1	122.31
+postgres	9.3.4	tpch	10	coldruns	q11	1	14.70
+postgres	9.3.4	tpch	10	coldruns	q12	1	122.07
+postgres	9.3.4	tpch	10	coldruns	q13	1	29.11
+postgres	9.3.4	tpch	10	coldruns	q14	1	81.08
+postgres	9.3.4	tpch	10	coldruns	q15	1	85.75
+postgres	9.3.4	tpch	10	coldruns	q16	1	47.26
+postgres	9.3.4	tpch	10	coldruns	q18	1	165.27
+postgres	9.3.4	tpch	10	coldruns	q19	1	82.57
+postgres	9.3.4	tpch	10	coldruns	q21	1	3440.60
+postgres	9.3.4	tpch	10	coldruns	q22	1	26.09
+postgres	9.3.4	tpch	10	coldruns	q01	2	163.81
+postgres	9.3.4	tpch	10	coldruns	q02	2	24.21
+postgres	9.3.4	tpch	10	coldruns	q03	2	113.81
+postgres	9.3.4	tpch	10	coldruns	q04	2	117.50
+postgres	9.3.4	tpch	10	coldruns	q05	2	127.95
+postgres	9.3.4	tpch	10	coldruns	q06	2	75.71
+postgres	9.3.4	tpch	10	coldruns	q07	2	108.11
+postgres	9.3.4	tpch	10	coldruns	q08	2	101.45
+postgres	9.3.4	tpch	10	coldruns	q09	2	1790.95
+postgres	9.3.4	tpch	10	coldruns	q10	2	123.01
+postgres	9.3.4	tpch	10	coldruns	q11	2	13.95
+postgres	9.3.4	tpch	10	coldruns	q12	2	123.11
+postgres	9.3.4	tpch	10	coldruns	q13	2	29.62
+postgres	9.3.4	tpch	10	coldruns	q14	2	80.80
+postgres	9.3.4	tpch	10	coldruns	q15	2	85.91
+postgres	9.3.4	tpch	10	coldruns	q16	2	46.14
+postgres	9.3.4	tpch	10	coldruns	q18	2	168.21
+postgres	9.3.4	tpch	10	coldruns	q19	2	82.49
+postgres	9.3.4	tpch	10	coldruns	q21	2	3345.75
+postgres	9.3.4	tpch	10	coldruns	q22	2	22.16
+postgres	9.3.4	tpch	10	coldruns	q01	3	165.93
+postgres	9.3.4	tpch	10	coldruns	q02	3	25.58
+postgres	9.3.4	tpch	10	coldruns	q03	3	117.40
+postgres	9.3.4	tpch	10	coldruns	q04	3	117.68
+postgres	9.3.4	tpch	10	coldruns	q05	3	128.98
+postgres	9.3.4	tpch	10	coldruns	q06	3	75.45
+postgres	9.3.4	tpch	10	coldruns	q07	3	111.96
+postgres	9.3.4	tpch	10	coldruns	q08	3	102.11
+postgres	9.3.4	tpch	10	coldruns	q09	3	1787.71
+postgres	9.3.4	tpch	10	coldruns	q10	3	124.24
+postgres	9.3.4	tpch	10	coldruns	q11	3	14.37
+postgres	9.3.4	tpch	10	coldruns	q12	3	124.34
+postgres	9.3.4	tpch	10	coldruns	q13	3	30.94
+postgres	9.3.4	tpch	10	coldruns	q14	3	81.43
+postgres	9.3.4	tpch	10	coldruns	q15	3	85.32
+postgres	9.3.4	tpch	10	coldruns	q16	3	46.06
+postgres	9.3.4	tpch	10	coldruns	q18	3	167.85
+postgres	9.3.4	tpch	10	coldruns	q19	3	81.80
+postgres	9.3.4	tpch	10	coldruns	q21	3	3401.02
+postgres	9.3.4	tpch	10	coldruns	q22	3	22.79
+postgres	9.3.4	tpch	10	coldruns	q01	4	165.41
+postgres	9.3.4	tpch	10	coldruns	q02	4	31.28
+postgres	9.3.4	tpch	10	coldruns	q03	4	117.50
+postgres	9.3.4	tpch	10	coldruns	q04	4	118.91
+postgres	9.3.4	tpch	10	coldruns	q05	4	131.41
+postgres	9.3.4	tpch	10	coldruns	q06	4	74.72
+postgres	9.3.4	tpch	10	coldruns	q07	4	109.65
+postgres	9.3.4	tpch	10	coldruns	q08	4	99.27
+postgres	9.3.4	tpch	10	coldruns	q09	4	1816.36
+postgres	9.3.4	tpch	10	coldruns	q10	4	123.94
+postgres	9.3.4	tpch	10	coldruns	q11	4	14.97
+postgres	9.3.4	tpch	10	coldruns	q12	4	126.55
+postgres	9.3.4	tpch	10	coldruns	q13	4	30.80
+postgres	9.3.4	tpch	10	coldruns	q14	4	80.26
+postgres	9.3.4	tpch	10	coldruns	q15	4	87.00
+postgres	9.3.4	tpch	10	coldruns	q16	4	46.57
+postgres	9.3.4	tpch	10	coldruns	q18	4	168.07
+postgres	9.3.4	tpch	10	coldruns	q19	4	83.08
+postgres	9.3.4	tpch	10	coldruns	q21	4	3423.96
+postgres	9.3.4	tpch	10	coldruns	q22	4	27.68
+postgres	9.3.4	tpch	10	coldruns	q01	5	165.85
+postgres	9.3.4	tpch	10	coldruns	q02	5	26.54
+postgres	9.3.4	tpch	10	coldruns	q03	5	116.28
+postgres	9.3.4	tpch	10	coldruns	q04	5	120.23
+postgres	9.3.4	tpch	10	coldruns	q05	5	133.01
+postgres	9.3.4	tpch	10	coldruns	q06	5	75.01
+postgres	9.3.4	tpch	10	coldruns	q07	5	112.15
+postgres	9.3.4	tpch	10	coldruns	q08	5	100.98
+postgres	9.3.4	tpch	10	coldruns	q09	5	1798.87
+postgres	9.3.4	tpch	10	coldruns	q10	5	124.53
+postgres	9.3.4	tpch	10	coldruns	q11	5	15.19
+postgres	9.3.4	tpch	10	coldruns	q12	5	123.36
+postgres	9.3.4	tpch	10	coldruns	q13	5	29.92
+postgres	9.3.4	tpch	10	coldruns	q14	5	81.41
+postgres	9.3.4	tpch	10	coldruns	q15	5	86.90
+postgres	9.3.4	tpch	10	coldruns	q16	5	48.28
+postgres	9.3.4	tpch	10	coldruns	q18	5	174.43
+postgres	9.3.4	tpch	10	coldruns	q19	5	82.92
+postgres	9.3.4	tpch	10	coldruns	q21	5	3412.52
+postgres	9.3.4	tpch	10	coldruns	q22	5	22.23
+postgres	9.3.4	tpch	10	warmup	q01	1	163.45
+postgres	9.3.4	tpch	10	warmup	q02	1	24.37
+postgres	9.3.4	tpch	10	warmup	q03	1	20.54
+postgres	9.3.4	tpch	10	warmup	q04	1	22.33
+postgres	9.3.4	tpch	10	warmup	q05	1	25.29
+postgres	9.3.4	tpch	10	warmup	q06	1	10.94
+postgres	9.3.4	tpch	10	warmup	q07	1	19.16
+postgres	9.3.4	tpch	10	warmup	q08	1	14.68
+postgres	9.3.4	tpch	10	warmup	q09	1	312.78
+postgres	9.3.4	tpch	10	warmup	q10	1	33.28
+postgres	9.3.4	tpch	10	warmup	q11	1	16.18
+postgres	9.3.4	tpch	10	warmup	q12	1	15.50
+postgres	9.3.4	tpch	10	warmup	q13	1	22.06
+postgres	9.3.4	tpch	10	warmup	q14	1	10.14
+postgres	9.3.4	tpch	10	warmup	q15	1	21.33
+postgres	9.3.4	tpch	10	warmup	q16	1	44.86
+postgres	9.3.4	tpch	10	warmup	q18	1	131.06
+postgres	9.3.4	tpch	10	warmup	q19	1	18.89
+postgres	9.3.4	tpch	10	warmup	q21	1	1448.53
+postgres	9.3.4	tpch	10	warmup	q22	1	8.57
+postgres	9.3.4	tpch	10	warmup	q01	2	156.81
+postgres	9.3.4	tpch	10	warmup	q02	2	16.86
+postgres	9.3.4	tpch	10	warmup	q03	2	22.82
+postgres	9.3.4	tpch	10	warmup	q04	2	25.66
+postgres	9.3.4	tpch	10	warmup	q05	2	60.23
+postgres	9.3.4	tpch	10	warmup	q06	2	15.30
+postgres	9.3.4	tpch	10	warmup	q07	2	41.19
+postgres	9.3.4	tpch	10	warmup	q08	2	16.52
+postgres	9.3.4	tpch	10	warmup	q09	2	296.99
+postgres	9.3.4	tpch	10	warmup	q10	2	32.93
+postgres	9.3.4	tpch	10	warmup	q11	2	13.41
+postgres	9.3.4	tpch	10	warmup	q12	2	15.65
+postgres	9.3.4	tpch	10	warmup	q13	2	20.56
+postgres	9.3.4	tpch	10	warmup	q14	2	10.19
+postgres	9.3.4	tpch	10	warmup	q15	2	21.58
+postgres	9.3.4	tpch	10	warmup	q16	2	44.78
+postgres	9.3.4	tpch	10	warmup	q18	2	111.60
+postgres	9.3.4	tpch	10	warmup	q19	2	29.64
+postgres	9.3.4	tpch	10	warmup	q21	2	1672.71
+postgres	9.3.4	tpch	10	warmup	q22	2	7.79
+postgres	9.3.4	tpch	10	hotruns	q01	1	157.30
+postgres	9.3.4	tpch	10	hotruns	q02	1	6.03
+postgres	9.3.4	tpch	10	hotruns	q03	1	24.97
+postgres	9.3.4	tpch	10	hotruns	q04	1	20.19
+postgres	9.3.4	tpch	10	hotruns	q05	1	35.25
+postgres	9.3.4	tpch	10	hotruns	q06	1	10.96
+postgres	9.3.4	tpch	10	hotruns	q07	1	19.41
+postgres	9.3.4	tpch	10	hotruns	q08	1	17.28
+postgres	9.3.4	tpch	10	hotruns	q09	1	301.75
+postgres	9.3.4	tpch	10	hotruns	q10	1	33.40
+postgres	9.3.4	tpch	10	hotruns	q11	1	14.78
+postgres	9.3.4	tpch	10	hotruns	q12	1	15.57
+postgres	9.3.4	tpch	10	hotruns	q13	1	20.30
+postgres	9.3.4	tpch	10	hotruns	q14	1	10.15
+postgres	9.3.4	tpch	10	hotruns	q15	1	21.43
+postgres	9.3.4	tpch	10	hotruns	q16	1	45.37
+postgres	9.3.4	tpch	10	hotruns	q18	1	161.03
+postgres	9.3.4	tpch	10	hotruns	q19	1	25.87
+postgres	9.3.4	tpch	10	hotruns	q21	1	1989.55
+postgres	9.3.4	tpch	10	hotruns	q22	1	6.29
+postgres	9.3.4	tpch	10	hotruns	q01	2	157.47
+postgres	9.3.4	tpch	10	hotruns	q02	2	7.07
+postgres	9.3.4	tpch	10	hotruns	q03	2	23.02
+postgres	9.3.4	tpch	10	hotruns	q04	2	20.35
+postgres	9.3.4	tpch	10	hotruns	q05	2	45.04
+postgres	9.3.4	tpch	10	hotruns	q06	2	11.55
+postgres	9.3.4	tpch	10	hotruns	q07	2	19.28
+postgres	9.3.4	tpch	10	hotruns	q08	2	17.34
+postgres	9.3.4	tpch	10	hotruns	q09	2	293.84
+postgres	9.3.4	tpch	10	hotruns	q10	2	33.30
+postgres	9.3.4	tpch	10	hotruns	q11	2	18.27
+postgres	9.3.4	tpch	10	hotruns	q12	2	15.57
+postgres	9.3.4	tpch	10	hotruns	q13	2	21.65
+postgres	9.3.4	tpch	10	hotruns	q14	2	10.21
+postgres	9.3.4	tpch	10	hotruns	q15	2	21.42
+postgres	9.3.4	tpch	10	hotruns	q16	2	45.03
+postgres	9.3.4	tpch	10	hotruns	q18	2	166.05
+postgres	9.3.4	tpch	10	hotruns	q19	2	41.46
+postgres	9.3.4	tpch	10	hotruns	q21	2	2042.33
+postgres	9.3.4	tpch	10	hotruns	q22	2	6.10
+postgres	9.3.4	tpch	10	hotruns	q01	3	157.11
+postgres	9.3.4	tpch	10	hotruns	q02	3	6.89
+postgres	9.3.4	tpch	10	hotruns	q03	3	23.51
+postgres	9.3.4	tpch	10	hotruns	q04	3	30.73
+postgres	9.3.4	tpch	10	hotruns	q05	3	35.76
+postgres	9.3.4	tpch	10	hotruns	q06	3	11.02
+postgres	9.3.4	tpch	10	hotruns	q07	3	19.21
+postgres	9.3.4	tpch	10	hotruns	q08	3	17.29
+postgres	9.3.4	tpch	10	hotruns	q09	3	304.01
+postgres	9.3.4	tpch	10	hotruns	q10	3	31.72
+postgres	9.3.4	tpch	10	hotruns	q11	3	17.54
+postgres	9.3.4	tpch	10	hotruns	q12	3	15.56
+postgres	9.3.4	tpch	10	hotruns	q13	3	20.39
+postgres	9.3.4	tpch	10	hotruns	q14	3	10.17
+postgres	9.3.4	tpch	10	hotruns	q15	3	21.61
+postgres	9.3.4	tpch	10	hotruns	q16	3	46.83
+postgres	9.3.4	tpch	10	hotruns	q18	3	167.08
+postgres	9.3.4	tpch	10	hotruns	q19	3	32.65
+postgres	9.3.4	tpch	10	hotruns	q21	3	1873.48
+postgres	9.3.4	tpch	10	hotruns	q22	3	6.08
+postgres	9.3.4	tpch	10	hotruns	q01	4	158.56
+postgres	9.3.4	tpch	10	hotruns	q02	4	6.04
+postgres	9.3.4	tpch	10	hotruns	q03	4	22.87
+postgres	9.3.4	tpch	10	hotruns	q04	4	20.34
+postgres	9.3.4	tpch	10	hotruns	q05	4	37.23
+postgres	9.3.4	tpch	10	hotruns	q06	4	10.96
+postgres	9.3.4	tpch	10	hotruns	q07	4	19.28
+postgres	9.3.4	tpch	10	hotruns	q08	4	17.25
+postgres	9.3.4	tpch	10	hotruns	q09	4	302.59
+postgres	9.3.4	tpch	10	hotruns	q10	4	31.76
+postgres	9.3.4	tpch	10	hotruns	q11	4	21.52
+postgres	9.3.4	tpch	10	hotruns	q12	4	15.59
+postgres	9.3.4	tpch	10	hotruns	q13	4	20.43
+postgres	9.3.4	tpch	10	hotruns	q14	4	10.16
+postgres	9.3.4	tpch	10	hotruns	q15	4	21.46
+postgres	9.3.4	tpch	10	hotruns	q16	4	44.99
+postgres	9.3.4	tpch	10	hotruns	q18	4	163.68
+postgres	9.3.4	tpch	10	hotruns	q19	4	36.48
+postgres	9.3.4	tpch	10	hotruns	q21	4	1906.98
+postgres	9.3.4	tpch	10	hotruns	q22	4	6.05
+postgres	9.3.4	tpch	10	hotruns	q01	5	159.11
+postgres	9.3.4	tpch	10	hotruns	q02	5	6.12
+postgres	9.3.4	tpch	10	hotruns	q03	5	23.85
+postgres	9.3.4	tpch	10	hotruns	q04	5	20.37
+postgres	9.3.4	tpch	10	hotruns	q05	5	37.24
+postgres	9.3.4	tpch	10	hotruns	q06	5	11.08
+postgres	9.3.4	tpch	10	hotruns	q07	5	19.29
+postgres	9.3.4	tpch	10	hotruns	q08	5	17.38
+postgres	9.3.4	tpch	10	hotruns	q09	5	303.45
+postgres	9.3.4	tpch	10	hotruns	q10	5	31.70
+postgres	9.3.4	tpch	10	hotruns	q11	5	20.30
+postgres	9.3.4	tpch	10	hotruns	q12	5	15.59
+postgres	9.3.4	tpch	10	hotruns	q13	5	20.34
+postgres	9.3.4	tpch	10	hotruns	q14	5	10.17
+postgres	9.3.4	tpch	10	hotruns	q15	5	21.65
+postgres	9.3.4	tpch	10	hotruns	q16	5	45.13
+postgres	9.3.4	tpch	10	hotruns	q18	5	162.36
+postgres	9.3.4	tpch	10	hotruns	q19	5	27.05
+postgres	9.3.4	tpch	10	hotruns	q21	5	1825.64
+postgres	9.3.4	tpch	10	hotruns	q22	5	6.03
\ No newline at end of file
diff --git a/results/results-2014-04-07/sf1-cold-all.pdf b/results/results-2014-04-07/sf1-cold-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..17725d15895c6b865ea4d9faa2475a2cc85a0484
GIT binary patch
literal 7324
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
NjLf)HRbBnvxB!??KXd>9

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf1-cold-subset.pdf b/results/results-2014-04-07/sf1-cold-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..eca7c9d077fd9da55f4c227d8442efe0699e4adf
GIT binary patch
literal 5138
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

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf1-hot-all.pdf b/results/results-2014-04-07/sf1-hot-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..310ca6630e773050926939a4ad45dc304310e8c1
GIT binary patch
literal 7136
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

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf1-hot-subset.pdf b/results/results-2014-04-07/sf1-hot-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5b268c1ad7ae4f9e2ea3af33b51766ba77f404a7
GIT binary patch
literal 5090
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

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf10-cold-all.pdf b/results/results-2014-04-07/sf10-cold-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f3d710e569e33aa3666a583b0b5c41f0a0c29799
GIT binary patch
literal 7272
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
E0Ly~k^Z)<=

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf10-cold-subset.pdf b/results/results-2014-04-07/sf10-cold-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1f55e50ce36539778c9272108ad9b3d1854d9b63
GIT binary patch
literal 5129
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
Xic1oUO28pwVqt8^rK;-c@5TiHD}T?B

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf10-hot-all.pdf b/results/results-2014-04-07/sf10-hot-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..32b1a4870fe4c863556aa5e830d24bc8871f8469
GIT binary patch
literal 7126
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
a7&vT-OA?Dpz#(I1VPwIjs_N?R#svUx45nTH

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf10-hot-subset.pdf b/results/results-2014-04-07/sf10-hot-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e104e5e0e469d126a8814d77f0935e1bb3e4da22
GIT binary patch
literal 5092
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

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf5-cold-all.pdf b/results/results-2014-04-07/sf5-cold-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6f7bc4c15ee9bfd48a334f595de5304832f949f3
GIT binary patch
literal 7352
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

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf5-cold-subset.pdf b/results/results-2014-04-07/sf5-cold-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d1f03f2d13cbd3dd28e68291041245849ef79a26
GIT binary patch
literal 5153
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
J>gw;t1pqP!=@|e3

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf5-hot-all.pdf b/results/results-2014-04-07/sf5-hot-all.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..685d92d2ac8aaf9eef915b2010d01283be72e0d7
GIT binary patch
literal 7175
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
XDK1GYDglR#nT5GIm#V6(zZ(|-X9L#3

literal 0
HcmV?d00001

diff --git a/results/results-2014-04-07/sf5-hot-subset.pdf b/results/results-2014-04-07/sf5-hot-subset.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..110d053370026b0f6657993d99243e11615169e3
GIT binary patch
literal 5121
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

literal 0
HcmV?d00001

-- 
GitLab