Skip to content

Commit 22e0346

Browse files
rahulKQLchingor13
authored andcommitted
---
yaml --- r: 16031 b: refs/heads/autosynth-errorreporting c: a696105 h: refs/heads/master i: 16029: 6acd1e4 16027: 9734d40 16023: fbca5f8 16015: 6b07eda 15999: bd14052
1 parent 40133bd commit 22e0346

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • branches/autosynth-errorreporting/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
@@ -131,7 +131,7 @@ refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
131131
refs/heads/autosynth-containeranalysis: 039ca5b8db725c76c16a965ff26b2774322b8ef8
132132
refs/heads/autosynth-datastore: 9acd400b484d6691a080c9152a331d88d24fefc1
133133
refs/heads/autosynth-dialogflow: d7477419376eac9b6dcc7dbcede581152527351d
134-
refs/heads/autosynth-errorreporting: fe59de257cd8535d486c11a67df8db664c7379b4
134+
refs/heads/autosynth-errorreporting: a6961059a534d4dbc4b6a5a75d58bc49f6caf01d
135135
refs/heads/autosynth-firestore: 92b27fbc8855c9902168695abb0a8f1f433b750b
136136
refs/heads/autosynth-iot: 9d732be07d99843d8cb53d34ec0837328a807fce
137137
refs/heads/autosynth-kms: dcc6e15d68759010c8735cc868135bd7e6c1cc5f

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