Skip to content

Commit 4db993a

Browse files
committed
emulator: mechanical fixes by CI tool.
1 parent d26faad commit 4db993a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

google/cloud/bigtable/emulator/table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ Status Table::SampleRowKeys(
565565
column_family_size_map.emplace(stream->column_family(),
566566
stream->column_family().size());
567567
column_qualifier_size_map.emplace(stream->column_qualifier(),
568-
stream->column_qualifier().size());
568+
stream->column_qualifier().size());
569569
timestamp_total_row_size += sizeof(stream->timestamp());
570570
value_total_row_size += stream->value().size();
571571
}

google/cloud/bigtable/emulator/table.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ class Table : public std::enable_shared_from_this<Table> {
9191
return column_families_.find(column_family);
9292
}
9393

94-
Status SampleRowKeys(double pass_probability, grpc::ServerWriter<google::bigtable::v2::SampleRowKeysResponse>* writer);
94+
Status SampleRowKeys(
95+
double pass_probability,
96+
grpc::ServerWriter<google::bigtable::v2::SampleRowKeysResponse>* writer);
9597

9698
std::shared_ptr<Table> get() { return shared_from_this(); }
9799

0 commit comments

Comments
 (0)