[
https://issues.apache.org/jira/browse/HIVE-24346?focusedWorklogId=544177&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-544177
]
ASF GitHub Bot logged work on HIVE-24346:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 29/Jan/21 10:02
Start Date: 29/Jan/21 10:02
Worklog Time Spent: 10m
Work Description: zeroflag commented on a change in pull request #1733:
URL: https://github.com/apache/hive/pull/1733#discussion_r566708243
##########
File path:
standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
##########
@@ -4675,4 +4676,145 @@ public void dropStoredProcedure(StoredProcedureRequest
request) throws MetaExcep
public List<String> getAllStoredProcedures(ListStoredProcedureRequest
request) throws MetaException, TException {
return client.get_all_stored_procedures(request);
}
+
+ @Override
+ public void addPackage(Package request) throws NoSuchObjectException,
MetaException, TException {
+ client.add_package(request);
+ }
+
+ @Override
+ public Package findPackage(PackageRequest request) throws TException {
+ return client.find_package(request);
+ }
+
+ @Override
+ public List<String> listPackages(ListPackageRequest request) throws
TException {
+ return client.get_all_packages(request);
+ }
+
+ @Override
+ public void dropPackage(PackageRequest request) throws TException {
+ client.drop_package(request);
+ }
+
+ /**
+ * Builder for the GetProjectionsSpec. This is a projection specification
for partitions returned from the HMS.
+ */
+ public static class GetPartitionProjectionsSpecBuilder {
Review comment:
Looks like some rebase + resolve conflict went wrong. This came from
someone else but it supposed to be deleted instead of added. I removed it from
the new patch.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 544177)
Time Spent: 2h 40m (was: 2.5h)
> Store HPL/SQL packages into HMS
> -------------------------------
>
> Key: HIVE-24346
> URL: https://issues.apache.org/jira/browse/HIVE-24346
> Project: Hive
> Issue Type: Sub-task
> Components: hpl/sql, Metastore
> Reporter: Attila Magyar
> Assignee: Attila Magyar
> Priority: Major
> Labels: pull-request-available
> Time Spent: 2h 40m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)