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.
Following SQL:
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.