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
Using "SELECT <column> FROM <table>" by JDBC and python brings 4 different results, when using CPU and GPU.
What you expected to happen:
It is the same result, when using CPU and GPU.
Minimal Complete Verifiable Example:
Query by JDBC:
DROPSCHEMA IF EXISTS database0;
CREATESCHEMAIF NOT EXISTS database0;
USE SCHEMA database0;
CREATETABLEt1 WITH ( location ='/tmp/t1.csv', format ='csv', gpu = FALSE );
CREATETABLEt1_gpu WITH ( location ='/tmp/t1.csv', format ='csv', gpu = TRUE );
t1.csv:
c0,c1,c2,c3
'', True, CAST((-127) AS TINYINT), 'Q,,p 4 v'
SQL:
SELECTt1.c2FROM t1;
Result:
c2
------
NULL
(1 row)
SQL:
SELECTt1_gpu.c2FROM t1_gpu;
Result:
c2
--------------------------
CAST((-127) AS TINYINT) (1 row)
qwebug
changed the title
[BUG][Logic Bug] "SELECT <column> FROM <table>" brings Error
[BUG][GPU Logic Bug] "SELECT <column> FROM <table>" brings Error
Jun 5, 2024
What happened:
Using "SELECT <column> FROM <table>" by JDBC and python brings 4 different results, when using CPU and GPU.
What you expected to happen:
It is the same result, when using CPU and GPU.
Minimal Complete Verifiable Example:
Query by JDBC:
t1.csv:
SQL:
Result:
SQL:
Result:
Query by python:
Result:
Anything else we need to know?:
Environment:
The text was updated successfully, but these errors were encountered: