You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@atlas.apache.org by "Ashutosh Mestry (JIRA)" <ji...@apache.org> on 2018/01/31 19:28:00 UTC

[jira] [Created] (ATLAS-2430) Advance Search: Select on multiple attributes containing complex attributes

Ashutosh Mestry created ATLAS-2430:
--------------------------------------

             Summary: Advance Search: Select on multiple attributes containing complex attributes
                 Key: ATLAS-2430
                 URL: https://issues.apache.org/jira/browse/ATLAS-2430
             Project: Atlas
          Issue Type: Bug
            Reporter: Ashutosh Mestry
            Assignee: Ashutosh Mestry


DSL query :
{code:java}
query =hive_table name = "employee" and db.name = "default" 
{code}
displays default.employee table

same query with select has no results :
{code:java}
query = hive_table name = "employee" and db.name = "default"  select name
{code}
but following queries work and display the name of the table:
{code:java}
query = hive_table name = "employee" and owner = "hrt_qa"  select name
{code}
{code:java}
query =hive_table db.name = "default"  select name
{code}
{code:java}
query =hive_table name = "employee" select name
{code}
Multiple conditions with/without complex attributes work. But "select" on multiple conditions with complex attributes doesn't work.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)