You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Peter Rozsa (Jira)" <ji...@apache.org> on 2022/08/24 17:12:00 UTC

[jira] [Created] (IMPALA-11530) SELECT statement fails with IllegalStateException when WHERE clause contains equals predicates with float columns and scientific numeric expressions

Peter Rozsa created IMPALA-11530:
------------------------------------

             Summary: SELECT statement fails with IllegalStateException when WHERE clause contains equals predicates with float columns and scientific numeric expressions
                 Key: IMPALA-11530
                 URL: https://issues.apache.org/jira/browse/IMPALA-11530
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 4.2.0
            Reporter: Peter Rozsa


The following select statement fails with IllegalStateException when the binary predicate has a float column as a left value and a numeric expression in scientific notation as a right value:
{code:java}
select * from functional_kudu.alltypes where float_col = 9.2E+18; {code}
The exact error message:
{code:java}
ERROR: IllegalStateException: child 0 type: DOUBLE child 1 type: FLOAT {code}
Numeric expressions higher than the limit of BIGINT (for example 9.3E+18) working fine.

 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)