Repository: incubator-atlas Updated Branches: refs/heads/0.7-incubating c0a4b0aa6 -> 83bccaa58
ATLAS-928 UI is not showing the name column for hive tables in the schema tab (yhemanth via sumasai) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/83bccaa5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/83bccaa5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/83bccaa5 Branch: refs/heads/0.7-incubating Commit: 83bccaa58aa3b85c579ec01e7472676809652af4 Parents: c0a4b0a Author: Suma Shivaprasad <[email protected]> Authored: Tue Jun 21 14:43:58 2016 -0700 Committer: Suma Shivaprasad <[email protected]> Committed: Tue Jun 21 14:46:18 2016 -0700 ---------------------------------------------------------------------- dashboardv2/public/js/collection/VSchemaList.js | 13 +++++++++++++ release-log.txt | 1 + 2 files changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/83bccaa5/dashboardv2/public/js/collection/VSchemaList.js ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/collection/VSchemaList.js b/dashboardv2/public/js/collection/VSchemaList.js index 1f03856..c11a0ba 100644 --- a/dashboardv2/public/js/collection/VSchemaList.js +++ b/dashboardv2/public/js/collection/VSchemaList.js @@ -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); http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/83bccaa5/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index bff40cf..0dcab5b 100644 --- a/release-log.txt +++ b/release-log.txt @@ -31,6 +31,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)
