You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Andrew Sherman (JIRA)" <ji...@apache.org> on 2017/06/29 16:59:00 UTC

[jira] [Updated] (HIVE-16991) HiveMetaStoreClient needs a 2-arg constructor for backwards compatibility

     [ https://issues.apache.org/jira/browse/HIVE-16991?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew Sherman updated HIVE-16991:
----------------------------------
    Description: 
Some client code that is not easy to change uses a 2-arg constructor on HiveMetaStoreClient.
It is trivial and safe to add this constructor:

public HiveMetaStoreClient(HiveConf conf, HiveMetaHookLoader hookLoader) throws MetaException {
    this(conf, hookLoader, true);
}

  was:
Some client code that is not easy to change uses a 2-arg constructor on HiveMetaStoreClient.
It is trivial and safe to add this constructor:

{{public HiveMetaStoreClient(HiveConf conf, HiveMetaHookLoader hookLoader) throws MetaException {
    this(conf, hookLoader, true);
}}}


> HiveMetaStoreClient needs a 2-arg constructor for backwards compatibility
> -------------------------------------------------------------------------
>
>                 Key: HIVE-16991
>                 URL: https://issues.apache.org/jira/browse/HIVE-16991
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Andrew Sherman
>            Assignee: Andrew Sherman
>
> Some client code that is not easy to change uses a 2-arg constructor on HiveMetaStoreClient.
> It is trivial and safe to add this constructor:
> public HiveMetaStoreClient(HiveConf conf, HiveMetaHookLoader hookLoader) throws MetaException {
>     this(conf, hookLoader, true);
> }



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)