Skip to content

Commit 14c01cd

Browse files
rahulKQLchingor13
authored andcommitted
---
yaml --- r: 14183 b: refs/heads/autosynth-pubsub c: a696105 h: refs/heads/master i: 14181: 8d8e480 14179: d5c96e0 14175: b657381
1 parent 4c30208 commit 14c01cd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • branches/autosynth-pubsub/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
@@ -116,7 +116,7 @@ refs/heads/autosynth-compute: 8e86445e504cea6f99b9fb237bfd7f0e5ef8b3ce
116116
refs/heads/autosynth-container: f6384095f50b31bfc8208542a49181e158d3681c
117117
refs/heads/autosynth-dataproc: bc74a8841bc1693d7945d991d15979df550b1fd1
118118
refs/heads/autosynth-monitoring: e67db7395a868e5f6ecc3476eb4a91c47abd4234
119-
refs/heads/autosynth-pubsub: fe59de257cd8535d486c11a67df8db664c7379b4
119+
refs/heads/autosynth-pubsub: a6961059a534d4dbc4b6a5a75d58bc49f6caf01d
120120
refs/heads/autosynth-video-intelligence: 3e8faeeee2f803271529bd6e89b621c1ca098628
121121
refs/heads/autosynth-vision: d758c43ba2ef4f4f7ad07b722617cb39fe3f29db
122122
refs/heads/spanner: 54a5e197bfe0a004e13c190427f46c3413ab572d

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