Skip to content

Commit 9aefe44

Browse files
rahulKQLchingor13
authored andcommitted
---
yaml --- r: 14703 b: refs/heads/autosynth-asset c: a696105 h: refs/heads/master i: 14701: 75d8440 14699: 535c685 14695: cc9cb77 14687: 43fa714
1 parent 644facc commit 9aefe44

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • branches/autosynth-asset/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
@@ -122,7 +122,7 @@ refs/heads/autosynth-vision: b8e47d76578b5f150ef530072ea7e485e2b02ca0
122122
refs/heads/spanner: b01127f885b4611bf1852abb0ce481eeb7fcc131
123123
refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
124124
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
125-
refs/heads/autosynth-asset: fe59de257cd8535d486c11a67df8db664c7379b4
125+
refs/heads/autosynth-asset: a6961059a534d4dbc4b6a5a75d58bc49f6caf01d
126126
refs/heads/autosynth-automl: d4315b3596bac160e3439432c54435f44b09953e
127127
refs/heads/autosynth-bigquerydatatransfer: 2a9f3938237f85a8919602d74011326580ff387f
128128
refs/heads/autosynth-bigquerystorage: 99aee05df348f39d98b6fb23c292006f1d2a6c28

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