Skip to content

Commit ba2a4af

Browse files
tlhquynhgcf-owl-bot[bot]olavloiterenovate-botHailongWen
authored
feat: add PG OID support (#2736)
* feat: add PG OID support * chore: fix lint errors * Update PG.OID implementation according to recent changes. * Update PG.OID implementation according to recent changes. * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: keep session pool ordering when pinging (#2695) * chore: keep session pool ordering when pinging Pinging sessions would move the sessions that were pinged to either the front or the back of the pool (dependingin the session pool configuration), instead of keeping the sessions in the place where they were when being pinged. Bringing a session that is pinged to the front of the pool means that we will prefer using a session that has not really been used for a while, other than for the ping. Keeping the sessions in place is therefore preferable. * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * deps: update dependency com.google.cloud:google-cloud-monitoring to v3.38.0 (#2942) * feat: allow attempt direct path xds via env var (#2950) To enable Direct Access, [both `setAttemptDirectPath` and `setAttemptDirectPathXds` should be called](https://togithub.com/googleapis/sdk-platform-java/blob/4b44a7851dc1d4fd2ac21a54df6c24db5625223c/gax-java/gax-grpc/src/main/java/com/google/api/gax/grpc/InstantiatingGrpcChannelProvider.java#L373-L386) for gax to append the correct google-c2p scheme. This PR adds a env var `GOOGLE_SPANNER_ENABLE_DIRECT_ACCESS` to control the enable/disable of Direct Access. When it is true, it calls `setAttemptDirectPathXds` which effectively turns on Direct Access (as `options.isAttemptDirectPath` is by default true and we don't need to call `setAttemptDirectPath` again). * build(deps): update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.13.0 (#2956) * build(deps): update dependency org.apache.maven.plugins:maven-assembly-plugin to v3.7.1 (#2955) * deps: update dependency com.google.cloud:sdk-platform-java-config to v3.28.1 (#2952) * refactor: move skip methods to abstract parser (#2948) Move the PostgreSQL skip methods from the PostgreSQL parser to the abstract parser. This is step 1 in refactoring the GoogleSQL and PostgreSQL parser so they can share more code. The eventual goal is to allow the GoogleSQL parser to be able to handle SQL string without having to remove the comments from the string first. * fix: return type of max commit delay option. (#2953) * Use `TransactionOption` as return type instead of `TransactionOption` * refactor: generalize skip methods (#2949) Generalize the various skip methods so these can be used for both dialects. Each dialect implements a number of abstract methods to indicate what type of statements and constructs they support. These methods are used by the generalized skip methods to determine the start and end of literals, identifiers, and comments. This is step 2 of the refactor that is needed to share more of the code between the SpannerStatementParser and PostgreSQLStatementParser. * perf: keep comments when searching for params (#2951) Keep all comments in the SQL string in place when converting positional parameters to named parameters. This reduces the amount of string operations that are needed for each query that is executed, and also enables actually sending comments from the client to Spanner when using positional parameters (e.g. in JDBC). This is step 3 in the refactoring to share more code between the SpannerStatementParser and PostgreSQLStatementParser. * chore: randomize session pool order based on TPS (#2792) * chore: randomize session pool order based on TPS * chore: remove unnecessary changes * chore(main): release 6.62.0 (#2940) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> * chore(main): release 6.62.1-SNAPSHOT (#2957) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * chore(deps): update dependency com.google.cloud:google-cloud-spanner to v6.62.0 (#2958) * chore(deps): update dependency com.google.cloud:google-cloud-spanner to v6.62.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore: add session pool options for multiplexed session. (#2960) * fix: prevent illegal negative timeout values into thread sleep() method while retrying exceptions in unit tests. * For details on issue see - #2206 * Fixing lint issues. * chore: add session pool options for multiplexed session. * Update google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPoolOptions.java Co-authored-by: Knut Olav Løite <[email protected]> * Update google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPoolOptions.java Co-authored-by: Knut Olav Løite <[email protected]> * fix: comments. * chore: lint fix. --------- Co-authored-by: Knut Olav Løite <[email protected]> * deps: update dependency com.google.cloud:google-cloud-trace to v2.38.0 (#2967) * chore: add new members in SessionImpl for multiplexed session. Add a … (#2961) * chore: add new members in SessionImpl for multiplexed session. Add a new method to create multiplexed session. * chore: add unit tests. * Update google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionClient.java Co-authored-by: Knut Olav Løite <[email protected]> * fix: comments. * chore: prefer junit assertions. * chore: change to default method in SpannerRpc interface. --------- Co-authored-by: Knut Olav Løite <[email protected]> * Update .gitignore to remove IDE specific files and remove unnecessary entries from CLIRR ignores * Remove PG.OID external getters. User should use Long/LongArray/LongList getters instead to get PgOid/PgOidArray/PgOidList columns. * chore: generalise session pool class for multiplexed session. (#2964) * chore: generalise session pool class for multiplexed session. * chore: add back previous code. * chore: address comments. * chore: emove unnecessary debug. * chore: add multiplexed session implementations for CachedSession/SessionFuture interfaces. (#2973) * chore: add multiplexed session implementations for CachedSession/SessionFuture interfaces. * chore: add comments. * chore: add session replacement handler for multiplexed session. * chore: address comments. * chore: fix comments. * chore: fix comments. * Remove internal PG.OID getters. * deps: update dependency com.google.cloud:google-cloud-monitoring to v3.39.0 (#2966) * chore(main): release 6.62.1 (#2968) :robot: I have created a release *beep* *boop* --- ## [6.62.1](https://togithub.com/googleapis/java-spanner/compare/v6.62.0...v6.62.1) (2024-03-28) ### Dependencies * Update dependency com.google.cloud:google-cloud-monitoring to v3.39.0 ([#2966](https://togithub.com/googleapis/java-spanner/issues/2966)) ([a5cb1dd](https://togithub.com/googleapis/java-spanner/commit/a5cb1ddd065100497d9215eff30d57361d7e84de)) * Update dependency com.google.cloud:google-cloud-trace to v2.38.0 ([#2967](https://togithub.com/googleapis/java-spanner/issues/2967)) ([b2dc788](https://togithub.com/googleapis/java-spanner/commit/b2dc788d5a54244d83a192ecac894ff931f884c4)) --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * chore(main): release 6.62.2-SNAPSHOT (#2983) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * feat: add support for transaction-level exclusion from change streams (#2959) * Add support for transaction-level exclusion from change streams * cleanup * refactor: introduce PartitionedUpdateOption * Revert "refactor: introduce PartitionedUpdateOption" This reverts commit 96b508b. * Add error handling in DML update APIs where excludeTxnFromChangeStreams option is not applicable * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * deps: update dependency com.google.cloud:google-cloud-trace to v2.39.0 (#2988) * deps: update dependency commons-io:commons-io to v2.16.0 (#2986) * deps: update dependency com.google.cloud:google-cloud-monitoring to v3.40.0 (#2987) * deps: update dependency com.google.cloud:google-cloud-monitoring to v3.40.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore(deps): update dependency com.google.cloud:libraries-bom to v26.35.0 (#2989) * chore(deps): update dependency com.google.cloud:libraries-bom to v26.35.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore(main): release 6.63.0 (#2985) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> * chore(main): release 6.63.1-SNAPSHOT (#2991) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please). * chore: clean up some warnings and malformed comments (#2977) * chore: clean up some warnings and malformed comments * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore(deps): update dependency com.google.cloud:google-cloud-spanner to v6.63.0 (#2992) * chore(deps): update dependency com.google.cloud:google-cloud-spanner to v6.63.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * feat: add endpoint connection URL property (#2969) Adds an 'endpoint' connection URL property for the Connection API. This property can be used instead of adding the endpoint to the host group part of the Connection URL, which again removes the need to actually change the connection URL when connecting to for example the emulator from the JDBC driver. The latter can instead just add the endpoint to the Properties set that is given to the JDBC driver. * feat: support max_commit_delay in Connection API (#2954) * feat: support max_commit_delay in Connection API Adds support for max_commit_delay to the Connection API: 1. Adds a setMaxCommitDelay(Duration) method to Connection 2. Adds a maxCommitDelay connection URL property 3. Adds a SET MAX_COMMIT_DELAY=<duration> SQL statement * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore: minor improvements to default benchmarks. (#2993) * chore: minor improvements to default benchmarks. * chore: lint issues fix. * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * build(deps): update dependency org.jacoco:jacoco-maven-plugin to v0.8.12 (#2996) * chore: add regex to match unmanaged dependency check (#1941) (#2971) Source-Link: googleapis/synthtool@ca7a716 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:cecae6152a85d55c932a64515643cf2e32a1f1b6e17503080eb07744b2177f28 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * feat: Add SessionPoolOptions, SpannerOptions protos in executor protos (#2932) * feat: Add instance partition support to spanner instance proto PiperOrigin-RevId: 611127452 Source-Link: googleapis/googleapis@618d47c Source-Link: googleapis/googleapis-gen@92d8555 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTJkODU1NTg4ODI4NDMwZThiNDI4ZWQ3ODIxOWUyM2VlNjY2ZGE3OCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix(deps): Update the Java code generator (gapic-generator-java) to 2.37.0 PiperOrigin-RevId: 611816371 Source-Link: googleapis/googleapis@2a40f63 Source-Link: googleapis/googleapis-gen@d30ff07 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZDMwZmYwNzY3Nzc3YjM4MWZiMTYxN2Y2N2E5MGUzYWJkM2JkYzZkYyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: Add SessionPoolOptions, SpannerOptions protos in executor protos PiperOrigin-RevId: 621265883 Source-Link: googleapis/googleapis@fed9845 Source-Link: googleapis/googleapis-gen@c66a769 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzY2YTc2OTU3ZTJlMTYzNDdiYzFkZDNmNGM2MzgyMjNmMDY1ZWU4MCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> * chore: Remove unused CLIRR entries --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Knut Olav Løite <[email protected]> Co-authored-by: Mend Renovate <[email protected]> Co-authored-by: Hailong Wen <[email protected]> Co-authored-by: Arpan Mishra <[email protected]> Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: dengwe1 <[email protected]> Co-authored-by: gcf-owl-bot[bot] <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 9b77c4f commit ba2a4af

19 files changed

+990
-433
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@ docs/
3131
*.pyc
3232

3333
.flattened-pom.xml
34+
.java-version
35+
.vscode/

google-cloud-spanner/src/main/java/com/google/cloud/spanner/AbstractStructReader.java

+11-6
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,15 @@ public boolean getBoolean(String columnName) {
165165

166166
@Override
167167
public long getLong(int columnIndex) {
168-
checkNonNullOfCodes(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnIndex);
168+
checkNonNullOfCodes(
169+
columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnIndex);
169170
return getLongInternal(columnIndex);
170171
}
171172

172173
@Override
173174
public long getLong(String columnName) {
174175
int columnIndex = getColumnIndex(columnName);
175-
checkNonNullOfCodes(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnName);
176+
checkNonNullOfCodes(columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnName);
176177
return getLongInternal(columnIndex);
177178
}
178179

@@ -366,30 +367,34 @@ public List<Boolean> getBooleanList(String columnName) {
366367
@Override
367368
public long[] getLongArray(int columnIndex) {
368369
checkNonNullOfCodes(columnIndex, Collections.singletonList(Code.ARRAY), columnIndex);
369-
checkArrayElementType(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnIndex);
370+
checkArrayElementType(
371+
columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnIndex);
370372
return getLongArrayInternal(columnIndex);
371373
}
372374

373375
@Override
374376
public long[] getLongArray(String columnName) {
375377
int columnIndex = getColumnIndex(columnName);
376378
checkNonNullOfCodes(columnIndex, Collections.singletonList(Code.ARRAY), columnName);
377-
checkArrayElementType(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnName);
379+
checkArrayElementType(
380+
columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnName);
378381
return getLongArrayInternal(columnIndex);
379382
}
380383

381384
@Override
382385
public List<Long> getLongList(int columnIndex) {
383386
checkNonNullOfCodes(columnIndex, Collections.singletonList(Code.ARRAY), columnIndex);
384-
checkArrayElementType(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnIndex);
387+
checkArrayElementType(
388+
columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnIndex);
385389
return getLongListInternal(columnIndex);
386390
}
387391

388392
@Override
389393
public List<Long> getLongList(String columnName) {
390394
int columnIndex = getColumnIndex(columnName);
391395
checkNonNullOfCodes(columnIndex, Collections.singletonList(Code.ARRAY), columnName);
392-
checkArrayElementType(columnIndex, Arrays.asList(Code.ENUM, Code.INT64), columnName);
396+
checkArrayElementType(
397+
columnIndex, Arrays.asList(Code.ENUM, Code.PG_OID, Code.INT64), columnName);
393398
return getLongListInternal(columnIndex);
394399
}
395400

google-cloud-spanner/src/main/java/com/google/cloud/spanner/GrpcStruct.java

+12
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ private Object writeReplace() {
114114
case PG_JSONB:
115115
builder.set(fieldName).to(Value.pgJsonb((String) value));
116116
break;
117+
case PG_OID:
118+
builder.set(fieldName).to(Value.pgOid((Long) value));
119+
break;
117120
case BYTES:
118121
builder
119122
.set(fieldName)
@@ -158,6 +161,9 @@ private Object writeReplace() {
158161
case PG_JSONB:
159162
builder.set(fieldName).toPgJsonbArray((Iterable<String>) value);
160163
break;
164+
case PG_OID:
165+
builder.set(fieldName).toPgOidArray((Iterable<Long>) value);
166+
break;
161167
case BYTES:
162168
case PROTO:
163169
builder
@@ -262,6 +268,7 @@ private static Object decodeValue(Type fieldType, com.google.protobuf.Value prot
262268
checkType(fieldType, proto, KindCase.BOOL_VALUE);
263269
return proto.getBoolValue();
264270
case INT64:
271+
case PG_OID:
265272
case ENUM:
266273
checkType(fieldType, proto, KindCase.STRING_VALUE);
267274
return Long.parseLong(proto.getStringValue());
@@ -319,6 +326,7 @@ private static Struct decodeStructValue(Type structType, ListValue structValue)
319326
static Object decodeArrayValue(Type elementType, ListValue listValue) {
320327
switch (elementType.getCode()) {
321328
case INT64:
329+
case PG_OID:
322330
case ENUM:
323331
// For int64/float64/float32/enum types, use custom containers.
324332
// These avoid wrapper object creation for non-null arrays.
@@ -563,6 +571,8 @@ protected Value getValueInternal(int columnIndex) {
563571
return Value.json(isNull ? null : getJsonInternal(columnIndex));
564572
case PG_JSONB:
565573
return Value.pgJsonb(isNull ? null : getPgJsonbInternal(columnIndex));
574+
case PG_OID:
575+
return Value.pgOid(isNull ? null : getLongInternal(columnIndex));
566576
case BYTES:
567577
return Value.internalBytes(isNull ? null : getLazyBytesInternal(columnIndex));
568578
case PROTO:
@@ -598,6 +608,8 @@ protected Value getValueInternal(int columnIndex) {
598608
return Value.jsonArray(isNull ? null : getJsonListInternal(columnIndex));
599609
case PG_JSONB:
600610
return Value.pgJsonbArray(isNull ? null : getPgJsonbListInternal(columnIndex));
611+
case PG_OID:
612+
return Value.pgOidArray(isNull ? null : getLongListInternal(columnIndex));
601613
case BYTES:
602614
return Value.bytesArray(isNull ? null : getBytesListInternal(columnIndex));
603615
case PROTO:

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Struct.java

+2
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,7 @@ private Object getAsObject(int columnIndex) {
396396
case BOOL:
397397
return getBooleanInternal(columnIndex);
398398
case INT64:
399+
case PG_OID:
399400
case ENUM:
400401
return getLongInternal(columnIndex);
401402
case FLOAT32:
@@ -426,6 +427,7 @@ private Object getAsObject(int columnIndex) {
426427
case BOOL:
427428
return getBooleanListInternal(columnIndex);
428429
case INT64:
430+
case PG_OID:
429431
case ENUM:
430432
return getLongListInternal(columnIndex);
431433
case FLOAT32:

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Type.java

+12
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public final class Type implements Serializable {
5555
private static final Type TYPE_STRING = new Type(Code.STRING, null, null);
5656
private static final Type TYPE_JSON = new Type(Code.JSON, null, null);
5757
private static final Type TYPE_PG_JSONB = new Type(Code.PG_JSONB, null, null);
58+
private static final Type TYPE_PG_OID = new Type(Code.PG_OID, null, null);
5859
private static final Type TYPE_BYTES = new Type(Code.BYTES, null, null);
5960
private static final Type TYPE_TIMESTAMP = new Type(Code.TIMESTAMP, null, null);
6061
private static final Type TYPE_DATE = new Type(Code.DATE, null, null);
@@ -67,6 +68,7 @@ public final class Type implements Serializable {
6768
private static final Type TYPE_ARRAY_STRING = new Type(Code.ARRAY, TYPE_STRING, null);
6869
private static final Type TYPE_ARRAY_JSON = new Type(Code.ARRAY, TYPE_JSON, null);
6970
private static final Type TYPE_ARRAY_PG_JSONB = new Type(Code.ARRAY, TYPE_PG_JSONB, null);
71+
private static final Type TYPE_ARRAY_PG_OID = new Type(Code.ARRAY, TYPE_PG_OID, null);
7072
private static final Type TYPE_ARRAY_BYTES = new Type(Code.ARRAY, TYPE_BYTES, null);
7173
private static final Type TYPE_ARRAY_TIMESTAMP = new Type(Code.ARRAY, TYPE_TIMESTAMP, null);
7274
private static final Type TYPE_ARRAY_DATE = new Type(Code.ARRAY, TYPE_DATE, null);
@@ -137,6 +139,11 @@ public static Type pgJsonb() {
137139
return TYPE_PG_JSONB;
138140
}
139141

142+
/** Returns the descriptor for the {@code PG_OID} type. */
143+
public static Type pgOid() {
144+
return TYPE_PG_OID;
145+
}
146+
140147
/**
141148
* To get the descriptor for the {@code PROTO} type.
142149
*
@@ -198,6 +205,8 @@ public static Type array(Type elementType) {
198205
return TYPE_ARRAY_JSON;
199206
case PG_JSONB:
200207
return TYPE_ARRAY_PG_JSONB;
208+
case PG_OID:
209+
return TYPE_ARRAY_PG_OID;
201210
case BYTES:
202211
return TYPE_ARRAY_BYTES;
203212
case TIMESTAMP:
@@ -280,6 +289,7 @@ public enum Code {
280289
STRING(TypeCode.STRING, "character varying"),
281290
JSON(TypeCode.JSON, "unknown"),
282291
PG_JSONB(TypeCode.JSON, "jsonb", TypeAnnotationCode.PG_JSONB),
292+
PG_OID(TypeCode.INT64, "oid", TypeAnnotationCode.PG_OID),
283293
PROTO(TypeCode.PROTO, "proto"),
284294
ENUM(TypeCode.ENUM, "enum"),
285295
BYTES(TypeCode.BYTES, "bytea"),
@@ -592,6 +602,8 @@ static Type fromProto(com.google.spanner.v1.Type proto) {
592602
return json();
593603
case PG_JSONB:
594604
return pgJsonb();
605+
case PG_OID:
606+
return pgOid();
595607
case BYTES:
596608
return bytes();
597609
case TIMESTAMP:

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Value.java

+148
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,20 @@ public static Value pgJsonb(@Nullable String v) {
254254
return new PgJsonbImpl(v == null, v);
255255
}
256256

257+
/**
258+
* Returns an {@code PG_OID} value.
259+
*
260+
* @param v the value, which may be null
261+
*/
262+
public static Value pgOid(@Nullable Long v) {
263+
return new PgOidImpl(v == null, v == null ? 0 : v);
264+
}
265+
266+
/** Returns an {@code PG_OID} value. */
267+
public static Value pgOid(long v) {
268+
return new PgOidImpl(false, v);
269+
}
270+
257271
/**
258272
* Return a {@code PROTO} value for not null proto messages.
259273
*
@@ -587,6 +601,40 @@ public static Value pgJsonbArray(@Nullable Iterable<String> v) {
587601
return new PgJsonbArrayImpl(v == null, v == null ? null : immutableCopyOf(v));
588602
}
589603

604+
/**
605+
* Returns an {@code ARRAY<PG_OID>} value.
606+
*
607+
* @param v the source of element values, which may be null to produce a value for which {@code
608+
* isNull()} is {@code true}
609+
*/
610+
public static Value pgOidArray(@Nullable long[] v) {
611+
return pgOidArray(v, 0, v == null ? 0 : v.length);
612+
}
613+
614+
/**
615+
* Returns an {@code ARRAY<PG_OID>} value that takes its elements from a region of an array.
616+
*
617+
* @param v the source of element values, which may be null to produce a value for which {@code
618+
* isNull()} is {@code true}
619+
* @param pos the start position of {@code v} to copy values from. Ignored if {@code v} is {@code
620+
* null}.
621+
* @param length the number of values to copy from {@code v}. Ignored if {@code v} is {@code
622+
* null}.
623+
*/
624+
public static Value pgOidArray(@Nullable long[] v, int pos, int length) {
625+
return pgOidArrayFactory.create(v, pos, length);
626+
}
627+
628+
/**
629+
* Returns an {@code ARRAY<PG_OID>} value.
630+
*
631+
* @param v the source of element values. This may be {@code null} to produce a value for which
632+
* {@code isNull()} is {@code true}. Individual elements may also be {@code null}.
633+
*/
634+
public static Value pgOidArray(@Nullable Iterable<Long> v) {
635+
return pgOidArrayFactory.create(v);
636+
}
637+
590638
/**
591639
* Returns an {@code ARRAY<PROTO>} value.
592640
*
@@ -1115,6 +1163,25 @@ Value newValue(boolean isNull, BitSet nulls, long[] values) {
11151163
return new Int64ArrayImpl(isNull, nulls, values);
11161164
}
11171165
};
1166+
1167+
private static final PrimitiveArrayValueFactory<long[], Long> pgOidArrayFactory =
1168+
new PrimitiveArrayValueFactory<long[], Long>() {
1169+
@Override
1170+
long[] newArray(int size) {
1171+
return new long[size];
1172+
}
1173+
1174+
@Override
1175+
void set(long[] arr, int i, Long value) {
1176+
arr[i] = value;
1177+
}
1178+
1179+
@Override
1180+
Value newValue(boolean isNull, BitSet nulls, long[] values) {
1181+
return new PgOidArrayImpl(isNull, nulls, values);
1182+
}
1183+
};
1184+
11181185
private static final PrimitiveArrayValueFactory<float[], Float> float32ArrayFactory =
11191186
new PrimitiveArrayValueFactory<float[], Float>() {
11201187
@Override
@@ -1822,6 +1889,41 @@ void valueToString(StringBuilder b) {
18221889
}
18231890
}
18241891

1892+
private static class PgOidImpl extends AbstractValue {
1893+
private final long value;
1894+
1895+
private PgOidImpl(boolean isNull, long value) {
1896+
super(isNull, Type.pgOid());
1897+
this.value = value;
1898+
}
1899+
1900+
@Override
1901+
public long getInt64() {
1902+
checkNotNull();
1903+
return value;
1904+
}
1905+
1906+
@Override
1907+
com.google.protobuf.Value valueToProto() {
1908+
return com.google.protobuf.Value.newBuilder().setStringValue(Long.toString(value)).build();
1909+
}
1910+
1911+
@Override
1912+
void valueToString(StringBuilder b) {
1913+
b.append(value);
1914+
}
1915+
1916+
@Override
1917+
boolean valueEquals(Value v) {
1918+
return ((PgOidImpl) v).value == value;
1919+
}
1920+
1921+
@Override
1922+
int valueHash() {
1923+
return Long.valueOf(value).hashCode();
1924+
}
1925+
}
1926+
18251927
private static class LazyBytesImpl extends AbstractObjectValue<LazyByteArray> {
18261928

18271929
private LazyBytesImpl(boolean isNull, LazyByteArray value) {
@@ -2457,6 +2559,48 @@ void appendElement(StringBuilder b, String element) {
24572559
}
24582560
}
24592561

2562+
private static class PgOidArrayImpl extends PrimitiveArrayImpl<Long> {
2563+
private final long[] values;
2564+
2565+
private PgOidArrayImpl(boolean isNull, BitSet nulls, long[] values) {
2566+
super(isNull, Type.pgOid(), nulls);
2567+
this.values = values;
2568+
}
2569+
2570+
@Override
2571+
public List<Long> getInt64Array() {
2572+
return getArray();
2573+
}
2574+
2575+
@Override
2576+
boolean valueEquals(Value v) {
2577+
PgOidArrayImpl that = (PgOidArrayImpl) v;
2578+
return Arrays.equals(values, that.values);
2579+
}
2580+
2581+
@Override
2582+
int size() {
2583+
return values.length;
2584+
}
2585+
2586+
@Override
2587+
Long getValue(int i) {
2588+
return values[i];
2589+
}
2590+
2591+
@Override
2592+
com.google.protobuf.Value getValueAsProto(int i) {
2593+
return com.google.protobuf.Value.newBuilder()
2594+
.setStringValue(Long.toString(values[i]))
2595+
.build();
2596+
}
2597+
2598+
@Override
2599+
int arrayHash() {
2600+
return Arrays.hashCode(values);
2601+
}
2602+
}
2603+
24602604
private static class LazyBytesArrayImpl extends AbstractArrayValue<LazyByteArray> {
24612605
private transient AbstractLazyInitializer<List<ByteArray>> bytesArray = defaultInitializer();
24622606

@@ -2790,6 +2934,8 @@ private Value getValue(int fieldIndex) {
27902934
return Value.numeric(value.getBigDecimal(fieldIndex));
27912935
case PG_NUMERIC:
27922936
return Value.pgNumeric(value.getString(fieldIndex));
2937+
case PG_OID:
2938+
return Value.pgOid(value.getLong(fieldIndex));
27932939
case DATE:
27942940
return Value.date(value.getDate(fieldIndex));
27952941
case TIMESTAMP:
@@ -2815,6 +2961,8 @@ private Value getValue(int fieldIndex) {
28152961
return Value.jsonArray(value.getJsonList(fieldIndex));
28162962
case PG_JSONB:
28172963
return Value.pgJsonbArray(value.getPgJsonbList(fieldIndex));
2964+
case PG_OID:
2965+
return Value.pgOidArray(value.getLongList(fieldIndex));
28182966
case BYTES:
28192967
case PROTO:
28202968
return Value.bytesArray(value.getBytesList(fieldIndex));

0 commit comments

Comments
 (0)