[ https://issues.apache.org/jira/browse/HIVE-14706?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15820841#comment-15820841 ]
Hive QA commented on HIVE-14706: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12847131/HIVE-14706.01.patch {color:red}ERROR:{color} -1 due to no test(s) being added or modified. {color:red}ERROR:{color} -1 due to 4 failed/errored test(s), 10941 tests executed *Failed tests:* {noformat} TestDerbyConnector - did not produce a TEST-*.xml file (likely timed out) (batchId=234) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[schema_evol_text_vec_part] (batchId=148) org.apache.hadoop.hive.ql.security.authorization.plugin.TestHiveAuthorizerCheckInvocation.org.apache.hadoop.hive.ql.security.authorization.plugin.TestHiveAuthorizerCheckInvocation (batchId=208) org.apache.hadoop.hive.ql.security.authorization.plugin.TestHiveAuthorizerShowFilters.org.apache.hadoop.hive.ql.security.authorization.plugin.TestHiveAuthorizerShowFilters (batchId=208) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/2908/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/2908/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-2908/ Messages: {noformat} Executing org.apache.hive.ptest.execution.TestCheckPhase Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 4 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12847131 - PreCommit-HIVE-Build > Lineage information not set properly > ------------------------------------ > > Key: HIVE-14706 > URL: https://issues.apache.org/jira/browse/HIVE-14706 > Project: Hive > Issue Type: Bug > Reporter: Vimal Sharma > Assignee: Pengcheng Xiong > Priority: Critical > Attachments: HIVE-14706.01.patch > > > I am trying to fetch column level lineage after a CTAS query in a Post > Execution hook in Hive. Below are the queries: > {code} > create table t1(id int, name string); > create table t2 as select * from t1; > {code} > The lineage information is retrieved using the following sample piece of code: > {code} > lInfo = hookContext.getLinfo() > for(Map.Entry<LineageInfo.DependencyKey, LineageInfo.Dependency> e : > lInfo.entrySet()) { > System.out.println("Col Lineage Key : " + e.getKey()); > System.out.println("Col Lineage Value: " + e.getValue()); > } > {code} > The Dependency field(i.e Col Lineage Value) is coming in as null. -- This message was sent by Atlassian JIRA (v6.3.4#6332)