-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
I have a problem on the query 11 on the TPCH(SF10).
It seams Hyper does not return the correct result set.
By digging into the issue I found something strange :
These Query that is part on the having filter part of the TPCH Q11 return 0
SELECT
SUM("PS_SUPPLYCOST" * "PS_AVAILQTY") * (0.0001/10)
from
"PARTSUPP",
"SUPPLIER",
"NATION"
where
"PS_SUPPKEY" = "S_SUPPKEY"
and "S_NATIONKEY" = "N_NATIONKEY"
and "N_NAME" = 'GERMANY';Whereas this one return the good results : 8102913.76524679
SELECT
SUM("PS_SUPPLYCOST" * "PS_AVAILQTY") /100000
from
"PARTSUPP",
"SUPPLIER",
"NATION"
where
"PS_SUPPKEY" = "S_SUPPKEY"
and "S_NATIONKEY" = "N_NATIONKEY"
and "N_NAME" = 'GERMANY';Metadata
Metadata
Assignees
Labels
No labels