You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/SpannerOperations.java
+11-8
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ public interface SpannerOperations {
66
66
*
67
67
* @param entityClass the type of the entity
68
68
* @param key the key of the object
69
-
* @param <T> the type of the object to retrieve.
69
+
* @param <T> the type of the object to check.
70
70
* @return {@literal true} if an entity with the given key exists, {@literal false} otherwise.
71
71
* @throws IllegalArgumentException if {@literal id} is {@literal null}.
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/SpannerTemplate.java
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/admin/SpannerDatabaseAdminTemplate.java
+9-9
Original file line number
Diff line number
Diff line change
@@ -149,16 +149,16 @@ public boolean databaseExists() {
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/convert/ConversionUtils.java
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/convert/SpannerEntityProcessor.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ public interface SpannerEntityProcessor extends SpannerEntityReader, SpannerEnti
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/core/mapping/event/ExecuteDmlEvent.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ public class ExecuteDmlEvent extends ApplicationEvent {
29
29
30
30
/**
31
31
* Constructor.
32
-
* @param statement @param statement the DML statement which is (never {@code null})
32
+
* @param statement the DML statement which is (never {@code null})
Copy file name to clipboardexpand all lines: spring-cloud-gcp-data-spanner/src/main/java/org/springframework/cloud/gcp/data/spanner/repository/query/SpannerStatementQueryExecutor.java
+13-13
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ public static <T> String applySortingPagingQueryOptions(Class<T> entityClass,
163
163
}
164
164
165
165
/**
166
-
* Gets a query that returns the rows associated with a parent entity. This function is
166
+
* Gets a {@link Statement} that returns the rows associated with a parent entity. This function is
167
167
* intended to be used with parent-child interleaved tables, so that the retrieval of all
168
168
* child rows having the parent's key values is efficient.
169
169
* @param parentKey the parent key whose children to get.
0 commit comments