[
https://issues.apache.org/jira/browse/HIVE-18891?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Amit Chauhan updated HIVE-18891:
--------------------------------
Comment: was deleted
(was: Also
when i replace or with and condition they query runs:
hive> explain select * from CCRS_PRDSTG_TBLS.CCRS_SALESREP_ACTS a WHERE
a.SLS_PRSN_ID_NEW LIKE '1234' and COALESCE(a.SLS_PRSN_ID_NEW,'3344') in (
select SLS_PRSN_ID as t FROM UDM_PRD_ITVM.SALES_PERSON);
OK)
> I am trying to write a basic query in hive and it is giving me error
> ---------------------------------------------------------------------
>
> Key: HIVE-18891
> URL: https://issues.apache.org/jira/browse/HIVE-18891
> Project: Hive
> Issue Type: Bug
> Affects Versions: 1.2.1
> Reporter: Amit Chauhan
> Priority: Trivial
>
> Query :
> explain select * from CCRS_PRDSTG_TBLS.CCRS_SALESREP_ACTS WHERE
> COALESCE(SLS_PRSN_ID_NEW, 'abc') in ( SELect SLS_PRSN_ID FROM
> UDM_PRD_ITVM.SALES_PERSON) or SLS_PRSN_ID_NEW LIKE 'abc';
> FAILED: SemanticException [Error 10249]: Line 1:97 Unsupported SubQuery
> Expression ''abc'': Only SubQuery expressions that are top level conjuncts
> are allowed.
>
> if i am running query in standalone like the 2 ways mentioned below they are
> running:
> hive> explain select * from CCRS_PRDSTG_TBLS.CCRS_SALESREP_ACTS WHERE
> COALESCE(SLS_PRSN_ID_NEW, 'abc') in ( SELect SLS_PRSN_ID FROM
> UDM_PRD_ITVM.SALES_PERSON) ;
> OK
> hive> explain select * from CCRS_PRDSTG_TBLS.CCRS_SALESREP_ACTS a WHERE
> a.SLS_PRSN_ID_NEW LIKE 'abc' ;
> OK
> can you please help why the query with both conditions is not running.
>
> hiver version is :
> hive> !hive --version;
> Hive 1.2.1000.2.5.6.0-40
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)