This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
perf: calculate checksum using protobuf values #2848
Merged
olavloite
merged 6 commits into
lazy-decode-result-set
from
calculate-checksum-on-protobuf
Feb 9, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4050a94
perf: calculate checksum using protobuf values
olavloite cbe8b66
chore: cleanup
olavloite 6234f5e
test: remove unrelated test
olavloite 7ea5000
Merge branch 'lazy-decode-result-set' into calculate-checksum-on-prot…
olavloite 70085ef
fix: undo change to public API
olavloite ef7f91e
chore: cleanup|
olavloite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
google-cloud-spanner/src/main/java/com/google/cloud/spanner/ProtobufResultSet.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| /* | ||
| * Copyright 2024 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package com.google.cloud.spanner; | ||
|
|
||
| import com.google.api.core.InternalApi; | ||
| import com.google.protobuf.Value; | ||
|
|
||
| /** Interface for {@link ResultSet}s that can return a protobuf value. */ | ||
| @InternalApi | ||
| public interface ProtobufResultSet extends ResultSet { | ||
|
|
||
| /** Returns true if the protobuf value for the given column is still available. */ | ||
| boolean canGetProtobufValue(int columnIndex); | ||
|
|
||
| /** | ||
| * Returns the column value as a protobuf value. | ||
| * | ||
| * <p>This is an internal method not intended for external usage. | ||
| * | ||
| * <p>This method may only be called before the column value has been decoded to a plain Java | ||
| * object. This means that the {@link DecodeMode} that is used for the {@link ResultSet} must be | ||
| * one of {@link DecodeMode#LAZY_PER_ROW} and {@link DecodeMode#LAZY_PER_COL}, and that the | ||
| * corresponding {@link ResultSet#getValue(int)}, {@link ResultSet#getBoolean(int)}, ... method | ||
| * may not yet have been called for the column. | ||
| */ | ||
| @InternalApi | ||
| Value getProtobufValue(int columnIndex); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.