Skip to content

[SQL] EXP, SINH, COSH functions produce NULL for inputs that generate extremely large results #5520

@rivudhk

Description

@rivudhk

Following SQL:

CREATE TABLE tbl (dbl DOUBLE);

CREATE MATERIALIZED VIEW v AS SELECT
SINH(dbl) AS sinh_dbl,
COSH(dbl) AS cosh_dbl,
EXP(dbl) AS exp_dbl
FROM tbl;

Given an input such as:
"dbl": 10192.0

Produces the following result:
[{'sinh_dbl': None, 'cosh_dbl': None, 'exp_dbl': None}]

Even though we support Infinity for DOUBLE values.

Metadata

Metadata

Labels

duplicateThis issue or pull request already existspython-sdkIssues related to the feldera python sdk

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions