Amit Chauhan created HIVE-18891:
-----------------------------------
Summary: 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
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)