Pinal created ATLAS-4211:
----------------------------
Summary: DSL Search : Regression: When fetching string attribute
with null value returns null , earlier versions returned empty
Key: ATLAS-4211
URL: https://issues.apache.org/jira/browse/ATLAS-4211
Project: Atlas
Issue Type: Bug
Components: atlas-core
Reporter: Pinal
Assignee: Pinal
description is set to null for an hive_table entity
DSL query : `hive_table name="bucketing_cols" select description` returns
{code:java}
{
"attributes":{
"name":[
"description"
],
"values":[
[
null
]
]
},
"approximateCount":-1
}{code}
Earlier:
{code:java}
{
"queryType": "DSL",
"queryText": "`hive_table` name=\"bucketing_cols\" select description",
"attributes": {
"name": [
"description"
],
"values": []
},
"approximateCount": -1
}{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)