-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/67713/
-----------------------------------------------------------
Review request for atlas.
Bugs: ATLAS-641
https://issues.apache.org/jira/browse/ATLAS-641
Repository: atlas
Description
-------
updated to Hive hook to exclude indirect sources in lineage
Diffs
-----
addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/events/CreateHiveProcess.java
33a263338
Diff: https://reviews.apache.org/r/67713/diff/1/
Testing
-------
Verified that lineage for view v2 in following case has direct input view v1
only.
create table t1(c1 int);
create table t2(c2 int);
create view v1 as select * from t1, t2;
create view v2 as select * from v1;
Thanks,
Madhan Neethiraj