We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1234447 commit efc8d50Copy full SHA for efc8d50
google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITWriteTest.java
@@ -211,7 +211,8 @@ private Timestamp write(Mutation m) {
211
}
212
213
private Mutation.WriteBuilder baseInsert() {
214
- return Mutation.newInsertOrUpdateBuilder("T").set("K").to(lastKey = uniqueString());
+ String table = dialect.dialect == Dialect.POSTGRESQL ? "public.T" : "T";
215
+ return Mutation.newInsertOrUpdateBuilder(table).set("K").to(lastKey = uniqueString());
216
217
218
private Struct readLastRow(String... columns) {
0 commit comments