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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]