Skip to content

Commit d346cfe

Browse files
rahulKQLchingor13
authored andcommitted
---
yaml --- r: 13739 b: refs/heads/autosynth-logging c: a696105 h: refs/heads/master i: 13737: f260705 13735: 3315808
1 parent 319ab21 commit d346cfe

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ refs/tags/v0.61.0: e4b526656bb1bf5eefd0ee578b7405147821225e
105105
refs/tags/v0.62.0: bbede7385d48ba08f487bdd29ec10668ace96396
106106
refs/heads/0.60.0-alpha: 10939381ffe0b8da32db4fe3087c86e3aa7f3e55
107107
refs/heads/autosynth-dlp: 90e4efe3be392e89dc36bce22afab981a905b1bc
108-
refs/heads/autosynth-logging: fe59de257cd8535d486c11a67df8db664c7379b4
108+
refs/heads/autosynth-logging: a6961059a534d4dbc4b6a5a75d58bc49f6caf01d
109109
refs/heads/dupes: 3478c5d81fd242d0e985656645a679420a2060c2
110110
refs/tags/v0.63.0: 94f19b71d40f46b36120e7b9d78a1a3d41bfcbd6
111111
refs/tags/v0.64.0: 456e8fbd129deced3ca025f239a2d8a82bde1d0a

branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/KeyOffset.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ public static KeyOffset create(ByteString key, long offsetBytes) {
3939
* <p>Note that row key may not have ever been written to or read from, and users should therefore
4040
* not make any assumptions about the row key structure that are specific to their use case.
4141
*/
42-
public abstract ByteString geyKey();
42+
public abstract ByteString getKey();
4343

4444
/**
45-
* Approximate total storage space used by all rows in the table which precede {@link #geyKey()}.
45+
* Approximate total storage space used by all rows in the table which precede {@link #getKey()}.
4646
* Buffering the contents of all rows between two subsequent samples would require space roughly
4747
* equal to the difference in their {@link #getOffsetBytes()} fields.
4848
*/

branches/autosynth-logging/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ public List<Query> shard(List<KeyOffset> sampledRowKeys) {
198198
ImmutableSortedSet.orderedBy(ByteStringComparator.INSTANCE);
199199

200200
for (KeyOffset keyOffset : sampledRowKeys) {
201-
if (!keyOffset.geyKey().isEmpty()) {
202-
splitPoints.add(keyOffset.geyKey());
201+
if (!keyOffset.getKey().isEmpty()) {
202+
splitPoints.add(keyOffset.getKey());
203203
}
204204
}
205205

0 commit comments

Comments
 (0)