diff --git a/plot.R b/plot.R index c05dd87e135dd7fb038a5ca53af1b6b3c435ed2a..aa844d944ffcec226359ef8f3026195335934b04 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 0000000000000000000000000000000000000000..67f371d8a75bc3e9e58536b54f141c66ddb3f402 --- /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 Binary files /dev/null and b/results/results-2014-04-07/sf1-cold-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf1-cold-subset.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf1-hot-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf1-hot-subset.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf10-cold-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf10-cold-subset.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf10-hot-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf10-hot-subset.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf5-cold-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf5-cold-subset.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf5-hot-all.pdf differ 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 Binary files /dev/null and b/results/results-2014-04-07/sf5-hot-subset.pdf differ