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 brings different results, when using CPU and GPU.
However, it is the same result, when using this sql by python.
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;
CREATETABLEt0 WITH ( location ='/tmp/t0.csv', format ='csv', gpu = FALSE );
CREATETABLEt0_gpu WITH ( location ='/tmp/t0.csv', format ='csv', gpu = TRUE );
What happened:
Using "SELECT <column> FROM <table>" by JDBC brings different results, when using CPU and GPU.
However, it is the same result, when using this sql by python.
What you expected to happen:
It is the same result, when using CPU and GPU.
Minimal Complete Verifiable Example:
Query by JDBC:
t0.csv:
SQL:
Result:
SQL:
Result:
c2 ------ 'E' (1 row)
Query by python:
Result:
Anything else we need to know?:
Environment:
The text was updated successfully, but these errors were encountered: