You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
root@localhost:26257/tpch> SELECT sum(l_extendedprice * l_discount) AS revenue FROM lineitem WHERE l_shipdate >= DATE '1994-01-01' AND l_shipdate < DATE '1994-01-01' + INTERVAL '1' YEAR AND l_discount BETWEEN 0.06 - 0.01 AND 0.06 + 0.01 AND l_quantity < 24;
revenue
+------------------------+
1.2301136360101066e+09
(1 row)
Time: 32.490876986s
root@localhost:26257/tpch> SET experimental_vectorize=always;
SET
Time: 496.18µs
warning: error retrieving the database name: pq: unsupported processor core localPlanNode:<RowSourceIdx:0 NumInputs:0 Name:"virtual table" >
root@localhost:26257/?> SELECT sum(l_extendedprice * l_discount) AS revenue FROM lineitem WHERE l_shipdate >= DATE '1994-01-01' AND l_shipdate < DATE '1994-01-01' + INTERVAL '1' YEAR AND l_discount BETWEEN 0.06 - 0.01 AND 0.06 + 0.01 AND l_quantity < 24;
revenue
+------------------------+
1.2301136360101078e+09
(1 row)
Time: 13.140193121s
The text was updated successfully, but these errors were encountered:
asubiotto
added
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
A-sql-vec
SQL vectorized engine
labels
Jun 20, 2019
Running sf10 on a 6 node cluster.
The text was updated successfully, but these errors were encountered: