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
# LogicTest: fakedist-vec fakedist-opt-vec
statement ok
CREATE TABLE abc (a INT PRIMARY KEY, b INT, c INT)
statement ok
INSERT INTO abc VALUES (1, 2, 3)
query I colnames
SELECT a+b+c AS foo FROM abc
----
foo
6
Note that it fails pretty reliably, but sometimes it's either of the configs, sometimes it's both (I haven't seen it succeed in 10 or so runs).
The text was updated successfully, but these errors were encountered:
yuzefovich
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
Jul 18, 2019
38983: exec: fix output types for projections r=jordanlewis a=jordanlewis
Previously, the output type of a projection was always set to the data
type of its input. This doesn't work for boolean projections like
eqIntIntOp, obviously. This wasn't failing tests because the final
materializer ignores the output column types, and we never fed boolean
projections into things that weren't the final materializers. This will
be tested going forward via distributed plans as well.
Closes#38970.
Release note: None
Co-authored-by: Jordan Lewis <jordanthelewis@gmail.com>
I added the following configs to
logic.go
:and the following logic test fails on master:
Note that it fails pretty reliably, but sometimes it's either of the configs, sometimes it's both (I haven't seen it succeed in 10 or so runs).
The text was updated successfully, but these errors were encountered: