Repository: incubator-atlas Updated Branches: refs/heads/master c4650913e -> 014abba5e
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/014abba5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/014abba5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/014abba5 Branch: refs/heads/master Commit: 014abba5ea0d2cafe900adc6f16ce7b48eab0b55 Parents: c465091 Author: Suma Shivaprasad <[email protected]> Authored: Tue Jun 21 14:42:11 2016 -0700 Committer: Suma Shivaprasad <[email protected]> Committed: Tue Jun 21 14:42:11 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/014abba5/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/014abba5/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 36d1d87..1897292 100644 --- a/release-log.txt +++ b/release-log.txt @@ -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)
