Skip to content

Commit d0db317

Browse files
authored
impl(bigtable): remove deprecated AsyncRowReader header (#15842)
* impl(bigtable): remove deprecated AsyncRowReader header
1 parent 600d394 commit d0db317

File tree

4 files changed

+17
-47
lines changed

4 files changed

+17
-47
lines changed

doc/v3-migration-guide.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,23 @@ for (auto& row : table.ReadRows(
104104
105105
</details>
106106
107+
<details>
108+
<summary>Removed <code>bigtable::AsyncRowReader<>::NO_ROWS_LIMIT</code>
109+
</summary>
110+
111+
AsyncRowReader::NO_ROWS_LIMIT has been removed. Please use
112+
`google::cloud::bigtable::RowReader::NO_ROWS_LIMIT` instead.
113+
114+
```cpp
115+
// Before
116+
auto limit = google::cloud::bigtable::AsyncRowReader<>::NO_ROWS_LIMIT;
117+
118+
// After
119+
auto limit = google::cloud::bigtable::RowReader::NO_ROWS_LIMIT;
120+
```
121+
122+
</details>
123+
107124
### Pubsub
108125

109126
### Spanner

google/cloud/bigtable/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ add_library(
108108
admin_client.h
109109
app_profile_config.cc
110110
app_profile_config.h
111-
async_row_reader.h
112111
bound_query.cc
113112
bound_query.h
114113
bytes.cc

google/cloud/bigtable/async_row_reader.h

Lines changed: 0 additions & 45 deletions
This file was deleted.

google/cloud/bigtable/google_cloud_cpp_bigtable.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ google_cloud_cpp_bigtable_hdrs = [
4747
"admin/internal/bigtable_table_admin_tracing_stub.h",
4848
"admin_client.h",
4949
"app_profile_config.h",
50-
"async_row_reader.h",
5150
"bound_query.h",
5251
"bytes.h",
5352
"cell.h",

0 commit comments

Comments
 (0)