Commit 014abba5 by Suma Shivaprasad

ATLAS-928 UI is not showing the name column for hive tables in the schema tab…

ATLAS-928 UI is not showing the name column for hive tables in the schema tab (yhemanth via sumasai)
parent c4650913
......@@ -38,6 +38,19 @@ define(['require',
throw new Error("this.modelAttrName not defined for " + this);
}
this.keyList = resp[this.modelAttrName].dataType.attributeDefinitions;
if (resp[this.modelAttrName].dataType.superTypes) {
if (resp[this.modelAttrName].dataType.superTypes.indexOf("Asset") != -1) {
this.keyList.push({
"name": "name",
"dataTypeName": "string",
"isComposite": false,
"isIndexable": true,
"isUnique": false,
"multiplicity": {},
"reverseAttributeName": null
})
}
}
var arr = [];
resp[this.modelAttrName].rows.forEach(function(d) {
arr.push(d);
......
......@@ -40,6 +40,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ATLAS-928 UI is not showing the name column for hive tables in the schema tab (yhemanth via sumasai)
ATLAS-922 remove test atlas-application.properties embedded in atlas-typesystem.jar ( mneethiraj via sumasai)
ATLAS-765 Need documentation for Authentication and Authorization features of Atlas (nixonrodrigues via yhemanth)
ATLAS-930 QuickStart is failing when run after a specific sequence of operations (yhemanth via shwethags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment