Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions doc/v3-migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,23 @@ for (auto& row : table.ReadRows(

</details>

<details>
<summary>Removed <code>bigtable::AsyncRowReader<>::NO_ROWS_LIMIT</code>
</summary>

AsyncRowReader::NO_ROWS_LIMIT has been removed. Please use
`google::cloud::bigtable::RowReader::NO_ROWS_LIMIT` instead.

```cpp
// Before
auto limit = google::cloud::bigtable::AsyncRowReader<>::NO_ROWS_LIMIT;

// After
auto limit = google::cloud::bigtable::RowReader::NO_ROWS_LIMIT;
```

</details>

### Pubsub

### Spanner
Expand Down
1 change: 0 additions & 1 deletion google/cloud/bigtable/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ add_library(
admin_client.h
app_profile_config.cc
app_profile_config.h
async_row_reader.h
bound_query.cc
bound_query.h
bytes.cc
Expand Down
45 changes: 0 additions & 45 deletions google/cloud/bigtable/async_row_reader.h

This file was deleted.

1 change: 0 additions & 1 deletion google/cloud/bigtable/google_cloud_cpp_bigtable.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ google_cloud_cpp_bigtable_hdrs = [
"admin/internal/bigtable_table_admin_tracing_stub.h",
"admin_client.h",
"app_profile_config.h",
"async_row_reader.h",
"bound_query.h",
"bytes.h",
"cell.h",
Expand Down