Skip to content

Commit 861b397

Browse files
committed
address comments
1 parent 85c677c commit 861b397

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

google/cloud/bigtable/internal/data_connection_impl.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,6 @@ bigtable::RowStream DataConnectionImpl::ExecuteQuery(
944944

945945
if (query_plan_data.ok()) {
946946
request.set_prepared_query(query_plan_data->prepared_query());
947-
// Add check inside retry resume fn
948947
auto source = retry_resume_fn(
949948
request, query_plan_data->metadata(), retry_policy(*current),
950949
backoff_policy(*current), operation_context);

google/cloud/bigtable/internal/data_connection_impl_test.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3722,6 +3722,7 @@ TEST_F(DataConnectionTest, ExecuteQueryFailureWithSchemaChange) {
37223722
EXPECT_CALL(*mock, ExecuteQuery)
37233723
.WillOnce([&](auto, auto const&,
37243724
google::bigtable::v2::ExecuteQueryRequest const& request) {
3725+
EXPECT_EQ(request.app_profile_id(), kAppProfile);
37253726
EXPECT_EQ(request.instance_name(),
37263727
"projects/test-project/instances/test-instance");
37273728
auto stream = std::make_unique<MockExecuteQueryStream>();

0 commit comments

Comments
 (0)