Nicolas Lalevée created HIVE-4737:
-------------------------------------

             Summary: Allow access to MapredContext
                 Key: HIVE-4737
                 URL: https://issues.apache.org/jira/browse/HIVE-4737
             Project: Hive
          Issue Type: Improvement
    Affects Versions: 0.11.0
            Reporter: Nicolas Lalevée


In order to tackle HIVE-1016, I have been pointed to HIVE-3628. But 
MapredContext.get() is package protected.

Here is my current work around, a hack which I put in my code:
{quote}
package org.apache.hadoop.hive.ql.exec;

public class MapredContextAccessor {

    public static MapredContext get() {
        return MapredContext.get();
    }

}
{quote}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to