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
Run following statements in datafusion-cli to reproduce:
CREATE TABLE t1 (v0 BIGINT);
CREATE TABLE t2 (v0 DOUBLE);
CREATE TABLE t3 (v0 DOUBLE);
INSERT INTO t1 (v0) VALUES (-503661263);
INSERT INTO t2 (v0) VALUES (-1.6635639473878496E308);
INSERT INTO t3 (v0) VALUES (0.05112015193508901);
select t3.v0, t2.v0 from t1,t2,t3 where t3.v0 >= t1.v0;
Error Message:
Execution error: Fail to build join indices in NestedLoopJoinExec, error:Arrow error: Invalid argument error: column types must match schema types, expected Int64 but found Float64 at column index 0
To Reproduce
No response
Expected behavior
No response
Additional context
This issue seem to report similar error message, I'm not sure if they are related #9254
Describe the bug
Run following statements in datafusion-cli to reproduce:
Error Message:
To Reproduce
No response
Expected behavior
No response
Additional context
This issue seem to report similar error message, I'm not sure if they are related #9254
Found by SQLancer #11030
The text was updated successfully, but these errors were encountered: