Commit c8f9f363 by Madhan Neethiraj

ATLAS-1507: fixed incorrect relationship specified in hive-model

parent 224eaffe
...@@ -233,7 +233,10 @@ ...@@ -233,7 +233,10 @@
"cardinality": "SINGLE", "cardinality": "SINGLE",
"constraintDefs": [ "constraintDefs": [
{ {
"type": "foreignKey" "type": "foreignKey",
"params": {
"onDelete": "update"
}
} }
], ],
"isIndexable": false, "isIndexable": false,
...@@ -254,9 +257,9 @@ ...@@ -254,9 +257,9 @@
"cardinality": "SINGLE", "cardinality": "SINGLE",
"constraintDefs": [ "constraintDefs": [
{ {
"type": "mappedFromRef", "type": "foreignKey",
"params": { "params": {
"refAttribute": "table" "onDelete": "update"
} }
} }
], ],
......
...@@ -9,6 +9,8 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al ...@@ -9,6 +9,8 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai) ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES: ALL CHANGES:
ATLAS-1507 fixed incorrect relationship specified in hive-model
ATLAS-1506 updated AtlasObjectId to support unqiueAttributes to identity the object
ATLAS-1378 Use .gitignore so git does not see binary files as changed (david_radley via dkantor) ATLAS-1378 Use .gitignore so git does not see binary files as changed (david_radley via dkantor)
ATLAS-1431 Integration tests added by ATLAS 1311 fail on Eclipse (david_radley via dkantor) ATLAS-1431 Integration tests added by ATLAS 1311 fail on Eclipse (david_radley via dkantor)
ATLAS-1387 Compiled Query Cache (jnhagelberg@us.ibm.com via svimal2106) ATLAS-1387 Compiled Query Cache (jnhagelberg@us.ibm.com via svimal2106)
......
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