You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Krisztian Kasa (Jira)" <ji...@apache.org> on 2021/04/21 14:22:00 UTC

[jira] [Resolved] (HIVE-25028) Hive: Select query with IS operator producing unexpected result

     [ https://issues.apache.org/jira/browse/HIVE-25028?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Krisztian Kasa resolved HIVE-25028.
-----------------------------------
    Resolution: Fixed

Pushed to master. Thanks [~soumyakanti.das].

> Hive: Select query with IS operator producing unexpected result
> ---------------------------------------------------------------
>
>                 Key: HIVE-25028
>                 URL: https://issues.apache.org/jira/browse/HIVE-25028
>             Project: Hive
>          Issue Type: Bug
>          Components: Parser
>            Reporter: Manthan B Y
>            Assignee: Soumyakanti Das
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Hive: Select query with IS operator is producing unexpected result.
> The following was executed on postgres:
> {code:java}
> sqlancer=# create table if not exists emp(name text, age int);
> CREATE TABLE
> sqlancer=# insert into emp values ('a', 5), ('b', 15), ('c', 12);
> INSERT 0 3
> sqlancer=# select emp.age from emp where emp.age > 10;
>  age
> -----
>   15
>   12
> (2 rows)sqlancer=# select emp.age > 10 is true from emp;
>  ?column?
> ----------
>  f
>  t
>  t
> (3 rows){code}
> This is happening because IS operator has higher precedence than comparison operators in Hive. In most other databases, comparison operator has higher precedence. The grammar needs to be changed to fix the precedence.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)