Repository: incubator-atlas Updated Branches: refs/heads/master 224eaffe7 -> c8f9f363b
ATLAS-1507: fixed incorrect relationship specified in hive-model Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/c8f9f363 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/c8f9f363 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/c8f9f363 Branch: refs/heads/master Commit: c8f9f363bf67a4a464510fdd2831d8b3162dba24 Parents: 224eaff Author: Madhan Neethiraj <[email protected]> Authored: Mon Jan 30 18:32:07 2017 -0800 Committer: Madhan Neethiraj <[email protected]> Committed: Mon Jan 30 23:59:20 2017 -0800 ---------------------------------------------------------------------- addons/models/0030-hive_model.json | 9 ++++++--- release-log.txt | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/c8f9f363/addons/models/0030-hive_model.json ---------------------------------------------------------------------- diff --git a/addons/models/0030-hive_model.json b/addons/models/0030-hive_model.json index 2fe7820..561cf5b 100644 --- a/addons/models/0030-hive_model.json +++ b/addons/models/0030-hive_model.json @@ -233,7 +233,10 @@ "cardinality": "SINGLE", "constraintDefs": [ { - "type": "foreignKey" + "type": "foreignKey", + "params": { + "onDelete": "update" + } } ], "isIndexable": false, @@ -254,9 +257,9 @@ "cardinality": "SINGLE", "constraintDefs": [ { - "type": "mappedFromRef", + "type": "foreignKey", "params": { - "refAttribute": "table" + "onDelete": "update" } } ], http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/c8f9f363/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 68b07b8..d836659 100644 --- a/release-log.txt +++ b/release-log.txt @@ -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) 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-1431 Integration tests added by ATLAS 1311 fail on Eclipse (david_radley via dkantor) ATLAS-1387 Compiled Query Cache ([email protected] via svimal2106)
