CloudBigtable version updated to v0.10.0
PiperOrigin-RevId: 253581428
This commit is contained in:
parent
6cf83ea14d
commit
a20602f88f
@ -443,6 +443,17 @@ BigtableTestClient::PrepareAsyncMutateRows(
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::unique_ptr<::grpc::ClientAsyncReaderInterface<
|
||||
::google::bigtable::v2::ReadRowsResponse>>
|
||||
BigtableTestClient::PrepareAsyncReadRows(
|
||||
::grpc::ClientContext* context,
|
||||
const ::google::bigtable::v2::ReadRowsRequest& request,
|
||||
::grpc::CompletionQueue* cq) {
|
||||
LOG(WARNING) << "Call to InMemoryDataClient::" << __func__
|
||||
<< "(); this will likely cause a crash!";
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::shared_ptr<grpc::Channel> BigtableTestClient::Channel() {
|
||||
LOG(WARNING) << "Call to InMemoryDataClient::Channel(); this will likely "
|
||||
"cause a crash!";
|
||||
|
@ -106,6 +106,12 @@ class BigtableTestClient : public ::google::cloud::bigtable::DataClient {
|
||||
const google::bigtable::v2::MutateRowsRequest& request,
|
||||
grpc::CompletionQueue* cq) override;
|
||||
|
||||
virtual std::unique_ptr<::grpc::ClientAsyncReaderInterface<
|
||||
::google::bigtable::v2::ReadRowsResponse>>
|
||||
PrepareAsyncReadRows(::grpc::ClientContext* context,
|
||||
const ::google::bigtable::v2::ReadRowsRequest& request,
|
||||
::grpc::CompletionQueue* cq) override;
|
||||
|
||||
std::shared_ptr<grpc::Channel> Channel() override;
|
||||
|
||||
private:
|
||||
|
@ -192,15 +192,15 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
|
||||
|
||||
tf_http_archive(
|
||||
name = "com_github_googlecloudplatform_google_cloud_cpp",
|
||||
sha256 = "a072103546cfa041ad8bfc599fe5a20c58e005a1a0ee18e94b2554dc3d485604",
|
||||
strip_prefix = "google-cloud-cpp-0.9.0",
|
||||
sha256 = "fd0c3e3b50f32af332b53857f8cd1bfa009e33d1eeecabc5c79a4825d906a90c",
|
||||
strip_prefix = "google-cloud-cpp-0.10.0",
|
||||
system_build_file = clean_dep("//third_party/systemlibs:google_cloud_cpp.BUILD"),
|
||||
system_link_files = {
|
||||
"//third_party/systemlibs:google_cloud_cpp.google.cloud.bigtable.BUILD": "google/cloud/bigtable/BUILD",
|
||||
},
|
||||
urls = [
|
||||
"http://mirror.tensorflow.org/github.com/googleapis/google-cloud-cpp/archive/v0.9.0.tar.gz",
|
||||
"https://github.com/googleapis/google-cloud-cpp/archive/v0.9.0.tar.gz",
|
||||
"http://mirror.tensorflow.org/github.com/googleapis/google-cloud-cpp/archive/v0.10.0.tar.gz",
|
||||
"https://github.com/googleapis/google-cloud-cpp/archive/v0.10.0.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user