Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
014abba5
Commit
014abba5
authored
8 years ago
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
VSchemaList.js
dashboardv2/public/js/collection/VSchemaList.js
+13
-0
release-log.txt
release-log.txt
+1
-0
No files found.
dashboardv2/public/js/collection/VSchemaList.js
View file @
014abba5
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
014abba5
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment