Skip to content

Comparisons with double precision type return wrong results #189

@JelteF

Description

@JelteF

Something is very wrong here (found while creating tests for #147)

create table t(d double precision);
insert into t values (8.0);
select count(*) from t where d < 8.1; -- returns 1 (correct)
set duckdb.execution = true;
select count(*) from t where d < 8.1; -- returns 0 (wrong)

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions