Skip to content

Commit 30cc411

Browse files
rahulKQLchingor13
authored andcommitted
---
yaml --- r: 17471 b: refs/heads/autosynth-tasks c: a696105 h: refs/heads/master i: 17469: 97fe381 17467: 0c73014 17463: 3afcb7c 17455: f6ff5a8 17439: f576035 17407: c917f9d
1 parent 75a91ef commit 30cc411

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • branches/autosynth-tasks/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
@@ -142,7 +142,7 @@ refs/heads/autosynth-scheduler: d97f8743ba965c7d5e492c8dc1f51d023104e260
142142
refs/heads/autosynth-securitycenter: 8e95447ccb176c3648880ee0cb926cd1f4065156
143143
refs/heads/autosynth-spanner: 9bff86d057df31e04c76d72865e8e073ac5794fb
144144
refs/heads/autosynth-speech: 75d6c62a9d07d3a3642980502a25d07fbde0f232
145-
refs/heads/autosynth-tasks: fe59de257cd8535d486c11a67df8db664c7379b4
145+
refs/heads/autosynth-tasks: a6961059a534d4dbc4b6a5a75d58bc49f6caf01d
146146
refs/heads/autosynth-texttospeech: 0e26ec9b0ed5bbedc038dea32bbb44bae0883668
147147
refs/heads/autosynth-trace: 80c58aa2fb54b0a9c6876f2c21aa8d19cf55962e
148148
refs/heads/autosynth-websecurityscanner: d4febbffb6c648b74faec62fe90e20adadc9a7d3

branches/autosynth-tasks/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-tasks/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)