Skip to content

feat(spanner): add support for Proto Columns in Connection API #3123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
May 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
cbabd6c
feat: Support for Proto Messages & Enums (#2155)
gauravpurohit06 Dec 28, 2022
1fb6e94
samples: Adding samples for updating & querying Proto messages & enum…
gauravpurohit06 Jan 5, 2023
6c97b99
test: Proto Column Integration tests (#2212)
gauravpurohit06 Jan 5, 2023
dd358c2
Merge remote-tracking branch 'upstream/main' into proto-column-enhanc…
gauravpurohit06 Jan 5, 2023
53397e6
Configured jitpack.yml to use OpenJDK 11 (#2218)
gauravpurohit06 Jan 5, 2023
2f8eb42
feat: add support for Proto Columns DDL (#2277)
harshachinta Mar 15, 2023
a70f259
Merge branch 'main' into proto-column-enhancement-alpha
harshachinta Jun 8, 2023
9513753
teat: update pom file to run tests on cloud-devel region temporarily …
harshachinta Jun 8, 2023
6701f52
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jun 8, 2023
f63da18
fix: revert host changes in pom.xml file
harshachinta Jun 9, 2023
10ee620
feat: add support for Proto Columns to Connection API
harshachinta Jun 9, 2023
7feaf10
feat: add client side statement support for proto descriptor
harshachinta Jun 9, 2023
02a31b6
feat: update existing unit tests to include proto descriptorss argument
harshachinta Jun 10, 2023
7746e08
feat: code refactor for client side statements
harshachinta Jun 12, 2023
dcbe166
feat: add unit tests
harshachinta Jun 12, 2023
76fdd77
feat: code refactoring for file path client statement
harshachinta Jun 12, 2023
33044c4
test: add integration test for DDL
harshachinta Jun 12, 2023
ad0873a
fix: comment refactoring
harshachinta Jun 13, 2023
a5f1697
feat: move proto descriptor file read logic to ConnectionImpl file to…
harshachinta Jun 13, 2023
e8fed61
feat: add autogenerated test for new proto columns client side statem…
harshachinta Jun 13, 2023
b15dd75
feat: add unit tests to verify proto descriptor set via filepath
harshachinta Jun 14, 2023
0c9f4f6
feat: add review comments
harshachinta Jun 15, 2023
f97b249
feat: add client side statement to show proto descriptors file path
harshachinta Jun 15, 2023
a42761b
fix: remove proto descriptors file extension validation
harshachinta Jun 15, 2023
865fc0c
feat: comment refactor
harshachinta Jun 15, 2023
f1e3f3a
feat: address review comments
harshachinta Jun 23, 2023
ef6e043
Merge branch 'main' into jdbc-proto-column-feature
harshachinta May 23, 2024
3481cfe
feat: update tests and revert autogenerated code
harshachinta May 23, 2024
8468d9a
chore: revert autogenerated coee
harshachinta May 23, 2024
5e0bed1
chore: revert autogenerated code
harshachinta May 23, 2024
0e4361f
chore: revert autogenerated code
harshachinta May 23, 2024
1f0d006
chore: lint format
harshachinta May 23, 2024
771178a
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] May 23, 2024
f7b5cf6
chore: regenerate descriptors file
harshachinta May 23, 2024
b98b56e
chore: update schema
harshachinta May 23, 2024
85bb7f3
chore: update base64 value for protodescriptor
harshachinta May 24, 2024
94eb11c
chore: update copyright year
harshachinta May 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: comment refactoring
  • Loading branch information
harshachinta committed Jun 13, 2023
commit ad0873ab1edc7f2a6fb5adcec4cc289c33bc68f3
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ public String convert(String value) {
}
}

/** Converter for converting strings to byte[] */
/** Converter for converting Base64 encoded string to byte[] */
static class ProtoDescriptorsConverter implements ClientSideStatementValueConverter<byte[]> {

public ProtoDescriptorsConverter(String allowedValues) {}
Expand Down