Skip to content

Commit 6542c62

Browse files
committed
fixup
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent ef1dadf commit 6542c62

25 files changed

Lines changed: 555 additions & 382 deletions

vortex-bench/src/runner.rs

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,12 +269,23 @@ impl SqlBenchmarkRunner {
269269

270270
/// Get the path for a `.slt.no` reference result file.
271271
///
272-
/// The path includes an engine-specific subdirectory so each engine can have
273-
/// its own expected results: `{expected_results_dir}/{engine}/q{idx:02}.slt.no`.
272+
/// First checks the engine-specific subdirectory
273+
/// (`{expected_results_dir}/{engine}/q{idx:02}.slt.no`), then falls back to
274+
/// a shared file in the root (`{expected_results_dir}/q{idx:02}.slt.no`).
274275
fn reference_path(&self, query_idx: usize) -> Option<PathBuf> {
275276
self.expected_results_dir.as_ref().map(|dir| {
276-
dir.join(self.engine.to_string())
277-
.join(format!("q{query_idx:02}.slt.no"))
277+
let engine_path = dir
278+
.join(self.engine.to_string())
279+
.join(format!("q{query_idx:02}.slt.no"));
280+
if engine_path.exists() {
281+
return engine_path;
282+
}
283+
let shared_path = dir.join(format!("q{query_idx:02}.slt.no"));
284+
if shared_path.exists() {
285+
return shared_path;
286+
}
287+
// Return the engine-specific path (will be created or flagged as missing).
288+
engine_path
278289
})
279290
}
280291

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
include ../q01.slt.no
1+
query TTTTTTTTTT rowsort
2+
select
3+
l_returnflag,
4+
l_linestatus,
5+
sum(l_quantity) as sum_qty,
6+
sum(l_extendedprice) as sum_base_price,
7+
sum(l_extendedprice * (1 - l_discount)) as sum_disc_price,
8+
sum(l_extendedprice * (1 - l_discount) * (1 + l_tax)) as sum_charge,
9+
avg(l_quantity) as avg_qty,
10+
avg(l_extendedprice) as avg_price,
11+
avg(l_discount) as avg_disc,
12+
count(*) as count_order
13+
from
14+
lineitem
15+
where
16+
l_shipdate <= date '1998-09-02'
17+
group by
18+
l_returnflag,
19+
l_linestatus
20+
order by
21+
l_returnflag,
22+
l_linestatus;
23+
----
24+
A F 37734107.00 56586554400.73 53758257134.8700 55909065222.827692 25.522005 38273.129734 0.049985 1478493
25+
N F 991417.00 1487504710.38 1413082168.0541 1469649223.194375 25.516471 38284.467760 0.050093 38854
26+
N O 74476040.00 111701729697.74 106118230307.6056 110367043872.497010 25.502226 38249.117988 0.049996 2920374
27+
R F 37719753.00 56568041380.90 53741292684.6040 55889619119.831932 25.505793 38250.854626 0.050009 1478870
Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1-
include ../q08.slt.no
1+
query TT rowsort
2+
select
3+
o_year,
4+
sum(case
5+
when nation = 'BRAZIL' then volume
6+
else 0
7+
end) / sum(volume) as mkt_share
8+
from
9+
(
10+
select
11+
extract(year from o_orderdate) as o_year,
12+
l_extendedprice * (1 - l_discount) as volume,
13+
n2.n_name as nation
14+
from
15+
part,
16+
supplier,
17+
lineitem,
18+
orders,
19+
customer,
20+
nation n1,
21+
nation n2,
22+
region
23+
where
24+
p_partkey = l_partkey
25+
and s_suppkey = l_suppkey
26+
and l_orderkey = o_orderkey
27+
and o_custkey = c_custkey
28+
and c_nationkey = n1.n_nationkey
29+
and n1.n_regionkey = r_regionkey
30+
and r_name = 'AMERICA'
31+
and s_nationkey = n2.n_nationkey
32+
and o_orderdate between date '1995-01-01' and date '1996-12-31'
33+
and p_type = 'ECONOMY ANODIZED STEEL'
34+
) as all_nations
35+
group by
36+
o_year
37+
order by
38+
o_year;
39+
----
40+
1995 0.03443589
41+
1996 0.04148552
Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
include ../q14.slt.no
1+
query T rowsort
2+
select
3+
100.00 * sum(case
4+
when p_type like 'PROMO%'
5+
then l_extendedprice * (1 - l_discount)
6+
else 0
7+
end) / sum(l_extendedprice * (1 - l_discount)) as promo_revenue
8+
from
9+
lineitem,
10+
part
11+
where
12+
l_partkey = p_partkey
13+
and l_shipdate >= date '1995-09-01'
14+
and l_shipdate < date '1995-10-01';
15+
----
16+
16.38077862639554
Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
include ../q01.slt.no
1+
query TTTTTTTTTT rowsort
2+
select
3+
l_returnflag,
4+
l_linestatus,
5+
sum(l_quantity) as sum_qty,
6+
sum(l_extendedprice) as sum_base_price,
7+
sum(l_extendedprice * (1 - l_discount)) as sum_disc_price,
8+
sum(l_extendedprice * (1 - l_discount) * (1 + l_tax)) as sum_charge,
9+
avg(l_quantity) as avg_qty,
10+
avg(l_extendedprice) as avg_price,
11+
avg(l_discount) as avg_disc,
12+
count(*) as count_order
13+
from
14+
lineitem
15+
where
16+
l_shipdate <= date '1998-09-02'
17+
group by
18+
l_returnflag,
19+
l_linestatus
20+
order by
21+
l_returnflag,
22+
l_linestatus;
23+
----
24+
A F 37734107.00 56586554400.73 53758257134.8700 55909065222.827692 25.522005853257337 38273.129734621674 0.049985295838397614 1478493
25+
N F 991417.00 1487504710.38 1413082168.0541 1469649223.194375 25.516471920522985 38284.4677608483 0.0500934266742163 38854
26+
N O 74476040.00 111701729697.74 106118230307.6056 110367043872.497010 25.50222676958499 38249.11798890827 0.04999658605370408 2920374
27+
R F 37719753.00 56568041380.90 53741292684.6040 55889619119.831932 25.50579361269077 38250.85462609966 0.05000940583012706 1478870
Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1-
include ../q08.slt.no
1+
query TT rowsort
2+
select
3+
o_year,
4+
sum(case
5+
when nation = 'BRAZIL' then volume
6+
else 0
7+
end) / sum(volume) as mkt_share
8+
from
9+
(
10+
select
11+
extract(year from o_orderdate) as o_year,
12+
l_extendedprice * (1 - l_discount) as volume,
13+
n2.n_name as nation
14+
from
15+
part,
16+
supplier,
17+
lineitem,
18+
orders,
19+
customer,
20+
nation n1,
21+
nation n2,
22+
region
23+
where
24+
p_partkey = l_partkey
25+
and s_suppkey = l_suppkey
26+
and l_orderkey = o_orderkey
27+
and o_custkey = c_custkey
28+
and c_nationkey = n1.n_nationkey
29+
and n1.n_regionkey = r_regionkey
30+
and r_name = 'AMERICA'
31+
and s_nationkey = n2.n_nationkey
32+
and o_orderdate between date '1995-01-01' and date '1996-12-31'
33+
and p_type = 'ECONOMY ANODIZED STEEL'
34+
) as all_nations
35+
group by
36+
o_year
37+
order by
38+
o_year;
39+
----
40+
1995 0.0344358904066548
41+
1996 0.04148552129353032
Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
include ../q14.slt.no
1+
query T rowsort
2+
select
3+
100.00 * sum(case
4+
when p_type like 'PROMO%'
5+
then l_extendedprice * (1 - l_discount)
6+
else 0
7+
end) / sum(l_extendedprice * (1 - l_discount)) as promo_revenue
8+
from
9+
lineitem,
10+
part
11+
where
12+
l_partkey = p_partkey
13+
and l_shipdate >= date '1995-09-01'
14+
and l_shipdate < date '1995-10-01';
15+
----
16+
16.380778626395543

vortex-bench/tpch/slt/results/q02.slt.no

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query RTTITTTT rowsort
1+
query TTTTTTTT rowsort
22
select
33
s_acctbal,
44
s_name,
@@ -47,7 +47,7 @@ limit 100;
4747
7843.52 Supplier#000006683 FRANCE 11680 Manufacturer#4 2Z0JGkiv01Y00oCFwUGfviIbhzCdy 16-464-517-8943 express, final pinto beans x-ray slyly asymptotes. unusual, unusual
4848
7850.66 Supplier#000001518 UNITED KINGDOM 86501 Manufacturer#1 ONda3YJiHKJOC 33-730-383-3892 ifts haggle fluffily pending pai
4949
7852.45 Supplier#000005864 RUSSIA 8363 Manufacturer#4 WCNfBPZeSXh3h,c 32-454-883-3821 usly unusual pinto beans. brave ideas sleep carefully quickly ironi
50-
7871.5 Supplier#000007206 RUSSIA 104695 Manufacturer#1 3w fNCnrVmvJjE95sgWZzvW 32-432-452-7731 ironic requests. furiously final theodolites cajole. final, express packages sleep. quickly reg
50+
7871.50 Supplier#000007206 RUSSIA 104695 Manufacturer#1 3w fNCnrVmvJjE95sgWZzvW 32-432-452-7731 ironic requests. furiously final theodolites cajole. final, express packages sleep. quickly reg
5151
7887.08 Supplier#000009792 GERMANY 164759 Manufacturer#3 Y28ITVeYriT3kIGdV2K8fSZ V2UqT5H1Otz 17-988-938-4296 ckly around the carefully fluffy theodolites. slyly ironic pack
5252
7894.56 Supplier#000007981 GERMANY 85472 Manufacturer#4 NSJ96vMROAbeXP 17-963-404-3760 ic platelets affix after the furiously
5353
7912.91 Supplier#000004211 GERMANY 159180 Manufacturer#5 2wQRVovHrm3,v03IKzfTd,1PYsFXQFFOG 17-266-947-7315 ay furiously regular platelets. cou
@@ -56,7 +56,7 @@ limit 100;
5656
7937.93 Supplier#000009012 ROMANIA 83995 Manufacturer#2 iUiTziH,Ek3i4lwSgunXMgrcTzwdb 29-250-925-9690 to the blithely ironic deposits nag sly
5757
7950.37 Supplier#000008101 GERMANY 33094 Manufacturer#5 kkYvL6IuvojJgTNG IKkaXQDYgx8ILohj 17-627-663-8014 arefully unusual requests x-ray above the quickly final deposits.
5858
7980.65 Supplier#000001288 FRANCE 13784 Manufacturer#4 zE,7HgVPrCn 16-646-464-8247 ully bold courts. escapades nag slyly. furiously fluffy theodo
59-
7992.4 Supplier#000006108 FRANCE 118574 Manufacturer#1 8tBydnTDwUqfBfFV4l3 16-974-998-8937 ironic ideas? fluffily even instructions wake. blithel
59+
7992.40 Supplier#000006108 FRANCE 118574 Manufacturer#1 8tBydnTDwUqfBfFV4l3 16-974-998-8937 ironic ideas? fluffily even instructions wake. blithel
6060
8042.09 Supplier#000003245 RUSSIA 135705 Manufacturer#4 Dh8Ikg39onrbOL4DyTfGw8a9oKUX3d9Y 32-836-132-8872 osits. packages cajole slyly. furiously regular deposits cajole slyly. q
6161
8042.09 Supplier#000003245 RUSSIA 150729 Manufacturer#1 Dh8Ikg39onrbOL4DyTfGw8a9oKUX3d9Y 32-836-132-8872 osits. packages cajole slyly. furiously regular deposits cajole slyly. q
6262
8046.07 Supplier#000008780 FRANCE 191222 Manufacturer#3 AczzuE0UK9osj ,Lx0Jmh 16-473-215-6395 onic platelets cajole after the regular instructions. permanently bold excuses
@@ -71,11 +71,11 @@ limit 100;
7171
8376.52 Supplier#000005306 UNITED KINGDOM 190267 Manufacturer#5 9t8Y8 QqSIsoADPt6NLdk,TP5zyRx41oBUlgoGc9 33-632-514-7931 ly final accounts sleep special, regular requests. furiously regular
7272
8386.08 Supplier#000008518 FRANCE 36014 Manufacturer#3 2jqzqqAVe9crMVGP,n9nTsQXulNLTUYoJjEDcqWV 16-618-780-7481 blithely bold pains are carefully platelets. finally regular pinto beans sleep carefully special
7373
8407.04 Supplier#000005406 RUSSIA 162889 Manufacturer#4 j7 gYF5RW8DC5UrjKC 32-626-152-4621 r the blithely regular packages. slyly ironic theodoli
74-
8431.4 Supplier#000002675 ROMANIA 5174 Manufacturer#1 HJFStOu9R5NGPOegKhgbzBdyvrG2yh8w 29-474-643-1443 ithely express pinto beans. blithely even foxes haggle. furiously regular theodol
74+
8431.40 Supplier#000002675 ROMANIA 5174 Manufacturer#1 HJFStOu9R5NGPOegKhgbzBdyvrG2yh8w 29-474-643-1443 ithely express pinto beans. blithely even foxes haggle. furiously regular theodol
7575
8432.89 Supplier#000003990 RUSSIA 191470 Manufacturer#1 wehBBp1RQbfxAYDASS75MsywmsKHRVdkrvNe6m 32-839-509-9301 ep furiously. packages should have to haggle slyly across the deposits. furiously regu
76-
8441.4 Supplier#000003817 FRANCE 141302 Manufacturer#2 hU3fz3xL78 16-339-356-5115 ely even ideas. ideas wake slyly furiously unusual instructions. pinto beans sleep ag
76+
8441.40 Supplier#000003817 FRANCE 141302 Manufacturer#2 hU3fz3xL78 16-339-356-5115 ely even ideas. ideas wake slyly furiously unusual instructions. pinto beans sleep ag
7777
8457.09 Supplier#000009456 UNITED KINGDOM 19455 Manufacturer#1 7SBhZs8gP1cJjT0Qf433YBk 33-858-440-4349 cing requests along the furiously unusual deposits promise among the furiously unus
78-
8503.7 Supplier#000006830 RUSSIA 44325 Manufacturer#4 BC4WFCYRUZyaIgchU 4S 32-147-878-5069 pades cajole. furious packages among the carefully express excuses boost furiously across th
78+
8503.70 Supplier#000006830 RUSSIA 44325 Manufacturer#4 BC4WFCYRUZyaIgchU 4S 32-147-878-5069 pades cajole. furious packages among the carefully express excuses boost furiously across th
7979
8517.23 Supplier#000009529 RUSSIA 37025 Manufacturer#5 e44R8o7JAIS9iMcr 32-565-297-8775 ove the even courts. furiously special platelets
8080
8517.23 Supplier#000009529 RUSSIA 59528 Manufacturer#2 e44R8o7JAIS9iMcr 32-565-297-8775 ove the even courts. furiously special platelets
8181
8553.82 Supplier#000003979 ROMANIA 143978 Manufacturer#4 BfmVhCAnCMY3jzpjUMy4CNWs9 HzpdQR7INJU 29-124-646-4897 ic requests wake against the blithely unusual accounts. fluffily r
@@ -100,16 +100,16 @@ limit 100;
100100
8996.14 Supplier#000009814 ROMANIA 139813 Manufacturer#2 af0O5pg83lPU4IDVmEylXZVqYZQzSDlYLAmR 29-995-571-8781 dependencies boost quickly across the furiously pending requests! unusual dolphins play sl
101101
8996.87 Supplier#000004702 FRANCE 102191 Manufacturer#5 8XVcQK23akp 16-811-269-8946 ickly final packages along the express plat
102102
9094.57 Supplier#000004582 RUSSIA 39575 Manufacturer#1 WB0XkCSG3r,mnQ n,h9VIxjjr9ARHFvKgMDf 32-587-577-1351 jole. regular accounts sleep blithely frets. final pinto beans play furiously past the
103-
9101 Supplier#000005791 ROMANIA 128254 Manufacturer#5 zub2zCV,jhHPPQqi,P2INAjE1zI n66cOEoXFG 29-549-251-5384 ts. notornis detect blithely above the carefully bold requests. blithely even package
103+
9101.00 Supplier#000005791 ROMANIA 128254 Manufacturer#5 zub2zCV,jhHPPQqi,P2INAjE1zI n66cOEoXFG 29-549-251-5384 ts. notornis detect blithely above the carefully bold requests. blithely even package
104104
9104.83 Supplier#000008520 GERMANY 150974 Manufacturer#4 RqRVDgD0ER J9 b41vR2,3 17-728-804-1793 ly about the blithely ironic depths. slyly final theodolites among the fluffily bold ideas print
105105
9128.97 Supplier#000004311 RUSSIA 146768 Manufacturer#5 I8IjnXd7NSJRs594RxsRR0 32-155-440-7120 refully. blithely unusual asymptotes haggle
106106
9189.98 Supplier#000001226 GERMANY 21225 Manufacturer#4 qsLCqSvLyZfuXIpjz 17-725-903-1381 deposits. blithely bold excuses about the slyly bold forges wake
107-
9192.1 Supplier#000000115 UNITED KINGDOM 85098 Manufacturer#3 nJ 2t0f7Ve,wL1,6WzGBJLNBUCKlsV 33-597-248-1220 es across the carefully express accounts boost caref
107+
9192.10 Supplier#000000115 UNITED KINGDOM 85098 Manufacturer#3 nJ 2t0f7Ve,wL1,6WzGBJLNBUCKlsV 33-597-248-1220 es across the carefully express accounts boost caref
108108
9201.47 Supplier#000009690 UNITED KINGDOM 67183 Manufacturer#5 CB BnUTlmi5zdeEl7R7 33-121-267-9529 e even, even foxes. blithely ironic packages cajole regular packages. slyly final ide
109-
9208.7 Supplier#000007769 ROMANIA 40256 Manufacturer#5 rsimdze 5o9P Ht7xS 29-964-424-9649 lites was quickly above the furiously ironic requests. slyly even foxes against the blithely bold
109+
9208.70 Supplier#000007769 ROMANIA 40256 Manufacturer#5 rsimdze 5o9P Ht7xS 29-964-424-9649 lites was quickly above the furiously ironic requests. slyly even foxes against the blithely bold
110110
9249.35 Supplier#000003973 FRANCE 26466 Manufacturer#1 d18GiDsL6Wm2IsGXM,RZf1jCsgZAOjNYVThTRP4 16-722-866-1658 uests are furiously. regular tithes through the regular, final accounts cajole furiously above the q
111111
9249.35 Supplier#000003973 FRANCE 33972 Manufacturer#1 d18GiDsL6Wm2IsGXM,RZf1jCsgZAOjNYVThTRP4 16-722-866-1658 uests are furiously. regular tithes through the regular, final accounts cajole furiously above the q
112-
9274.8 Supplier#000008854 RUSSIA 76346 Manufacturer#3 1xhLoOUM7I3mZ1mKnerw OSqdbb4QbGa 32-524-148-5221 y. courts do wake slyly. carefully ironic platelets haggle above the slyly regular the
112+
9274.80 Supplier#000008854 RUSSIA 76346 Manufacturer#3 1xhLoOUM7I3mZ1mKnerw OSqdbb4QbGa 32-524-148-5221 y. courts do wake slyly. carefully ironic platelets haggle above the slyly regular the
113113
9280.27 Supplier#000007194 ROMANIA 47193 Manufacturer#3 zhRUQkBSrFYxIAXTfInj vyGRQjeK 29-318-454-2133 o beans haggle after the furiously unusual deposits. carefully silent dolphins cajole carefully
114114
9312.97 Supplier#000007807 RUSSIA 100276 Manufacturer#5 oGYMPCk9XHGB2PBfKRnHA 32-673-872-5854 ecial packages among the pending, even requests use regula
115115
9312.97 Supplier#000007807 RUSSIA 90279 Manufacturer#5 oGYMPCk9XHGB2PBfKRnHA 32-673-872-5854 ecial packages among the pending, even requests use regula
@@ -120,7 +120,7 @@ limit 100;
120120
9453.01 Supplier#000000802 ROMANIA 175767 Manufacturer#1 ,6HYXb4uaHITmtMBj4Ak57Pd 29-342-882-6463 gular frets. permanently special multipliers believe blithely alongs
121121
9461.05 Supplier#000002536 UNITED KINGDOM 20033 Manufacturer#1 8mmGbyzaU 7ZS2wJumTibypncu9pNkDc4FYA 33-556-973-5522 . slyly regular deposits wake slyly. furiously regular warthogs are.
122122
9492.79 Supplier#000005975 GERMANY 25974 Manufacturer#5 S6mIiCTx82z7lV 17-992-579-4839 arefully pending accounts. blithely regular excuses boost carefully carefully ironic p
123-
9558.1 Supplier#000003532 UNITED KINGDOM 88515 Manufacturer#4 EOeuiiOn21OVpTlGguufFDFsbN1p0lhpxHp 33-152-301-2164 foxes. quickly even excuses use. slyly special foxes nag bl
123+
9558.10 Supplier#000003532 UNITED KINGDOM 88515 Manufacturer#4 EOeuiiOn21OVpTlGguufFDFsbN1p0lhpxHp 33-152-301-2164 foxes. quickly even excuses use. slyly special foxes nag bl
124124
9571.83 Supplier#000004305 ROMANIA 179270 Manufacturer#2 qNHZ7WmCzygwMPRDO9Ps 29-973-481-1831 kly carefully express asymptotes. furiou
125125
9612.94 Supplier#000003228 ROMANIA 120715 Manufacturer#2 KDdpNKN3cWu7ZSrbdqp7AfSLxx,qWB 29-325-784-8187 warhorses. quickly even deposits sublate daringly ironic instructions. slyly blithe t
126126
9612.94 Supplier#000003228 ROMANIA 198189 Manufacturer#4 KDdpNKN3cWu7ZSrbdqp7AfSLxx,qWB 29-325-784-8187 warhorses. quickly even deposits sublate daringly ironic instructions. slyly blithe t
@@ -130,8 +130,8 @@ limit 100;
130130
9681.33 Supplier#000008406 RUSSIA 78405 Manufacturer#1 ,qUuXcftUl 32-139-873-8571 haggle slyly regular excuses. quic
131131
9721.95 Supplier#000008757 UNITED KINGDOM 156241 Manufacturer#3 Atg6GnM4dT2 33-821-407-2995 eep furiously sauternes; quickl
132132
9739.86 Supplier#000003384 FRANCE 138357 Manufacturer#2 o,Z3v4POifevE k9U1b 6J1ucX,I 16-494-913-5925 s after the furiously bold packages sleep fluffily idly final requests: quickly final
133-
9817.1 Supplier#000002352 RUSSIA 124815 Manufacturer#2 4LfoHUZjgjEbAKw TgdKcgOc4D4uCYw 32-551-831-1437 wake carefully alongside of the carefully final ex
134-
9817.1 Supplier#000002352 RUSSIA 152351 Manufacturer#3 4LfoHUZjgjEbAKw TgdKcgOc4D4uCYw 32-551-831-1437 wake carefully alongside of the carefully final ex
133+
9817.10 Supplier#000002352 RUSSIA 124815 Manufacturer#2 4LfoHUZjgjEbAKw TgdKcgOc4D4uCYw 32-551-831-1437 wake carefully alongside of the carefully final ex
134+
9817.10 Supplier#000002352 RUSSIA 152351 Manufacturer#3 4LfoHUZjgjEbAKw TgdKcgOc4D4uCYw 32-551-831-1437 wake carefully alongside of the carefully final ex
135135
9836.93 Supplier#000007342 RUSSIA 4841 Manufacturer#4 JOlK7C1,7xrEZSSOw 32-399-414-5385 blithely carefully bold theodolites. fur
136136
9847.57 Supplier#000006345 FRANCE 173827 Manufacturer#2 VSt3rzk3qG698u6ld8HhOByvrTcSTSvQlDQDag 16-886-766-7945 ges. slyly regular requests are. ruthless, express excuses cajole blithely across the unu
137137
9847.57 Supplier#000006345 FRANCE 86344 Manufacturer#1 VSt3rzk3qG698u6ld8HhOByvrTcSTSvQlDQDag 16-886-766-7945 ges. slyly regular requests are. ruthless, express excuses cajole blithely across the unu

vortex-bench/tpch/slt/results/q03.slt.no

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query IRPI rowsort
1+
query TTTT rowsort
22
select
33
l_orderkey,
44
sum(l_extendedprice * (1 - l_discount)) as revenue,
@@ -30,6 +30,6 @@ limit 10;
3030
2628192 373133.3094 1995-02-22 0
3131
3459808 405838.6989 1995-03-04 0
3232
4878020 378376.7952 1995-03-12 0
33-
492164 390324.061 1995-02-19 0
33+
492164 390324.0610 1995-02-19 0
3434
5521732 375153.9215 1995-03-13 0
3535
993600 371407.4595 1995-03-05 0

vortex-bench/tpch/slt/results/q04.slt.no

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query TI rowsort
1+
query TT rowsort
22
select
33
o_orderpriority,
44
count(*) as order_count

0 commit comments

Comments
 (0)