Skip to content

Commit

Permalink
Merge f0fdd95 into 7ff695c
Browse files Browse the repository at this point in the history
  • Loading branch information
vedantchokshi committed Apr 24, 2020
2 parents 7ff695c + f0fdd95 commit 75beeb1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Minimum supported Java version is now 8 (was 7).
* Updated `circus-train-version` to 16.0.0 (was 15.0.0).
* Updated `hotels-oss-parent` version to 5.0.0 (was 4.2.0).
* Updated `hive` version to 2.3.5 (was 2.3.3).
* Updated `hive` version to 2.3.7 (was 2.3.5). This allows Circus Train Big Query to be used on JDK>=9.
* Updated Google Cloud `libraries-bom` to 4.1.1 (was 2.9.0).
* Updated `maven-shade-plugin` to 3.2.2 (was 3.2.1)

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<circus-train-version>16.0.0</circus-train-version>
<google-cloud.version>4.1.1</google-cloud.version>
<hadoop.version>2.7.1</hadoop.version>
<hive.version>2.3.5</hive.version>
<hive.version>2.3.7</hive.version>
<shade.prefix>${project.groupId}.circustrain.bigquery.shaded</shade.prefix>
<spring-platform.version>2.0.8.RELEASE</spring-platform.version>
<lastcommons-test.version>7.0.2</lastcommons-test.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2018-2019 Expedia, Inc.
* Copyright (C) 2018-2020 Expedia, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -67,6 +67,8 @@
import org.apache.hadoop.hive.metastore.api.OpenTxnsResponse;
import org.apache.hadoop.hive.metastore.api.Partition;
import org.apache.hadoop.hive.metastore.api.PartitionEventType;
import org.apache.hadoop.hive.metastore.api.PartitionValuesRequest;
import org.apache.hadoop.hive.metastore.api.PartitionValuesResponse;
import org.apache.hadoop.hive.metastore.api.PrimaryKeysRequest;
import org.apache.hadoop.hive.metastore.api.PrincipalPrivilegeSet;
import org.apache.hadoop.hive.metastore.api.PrincipalType;
Expand Down Expand Up @@ -403,6 +405,12 @@ public List<String> listPartitionNames(String s, String s1, List<String> list, s
throw new UnsupportedOperationException(String.format(ERROR_MESSAGE, "listPartitionNames"));
}

@Override
public PartitionValuesResponse listPartitionValues(PartitionValuesRequest partitionValuesRequest)
throws MetaException, TException, NoSuchObjectException {
throw new UnsupportedOperationException(String.format(ERROR_MESSAGE, "listPartitionValues"));
}

@Override
public int getNumPartitionsByFilter(String s, String s1, String s2)
throws MetaException, NoSuchObjectException, TException {
Expand Down

0 comments on commit 75beeb1

Please sign in to comment.