We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41673d7 commit b44104fCopy full SHA for b44104f
google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITAutogeneratedAdminClientTest.java
@@ -266,9 +266,9 @@ private Database createAndUpdateDatabase(
266
267
private String getCreateTableStatement() {
268
if (dialect == DatabaseDialect.POSTGRESQL) {
269
- return "CREATE TABLE T (" + " \"K\" VARCHAR PRIMARY KEY" + ")";
+ return "CREATE TABLE IF NOT EXISTS T (" + " \"K\" VARCHAR PRIMARY KEY" + ")";
270
} else {
271
- return "CREATE TABLE T (" + " K STRING(MAX)" + ") PRIMARY KEY (K)";
+ return "CREATE TABLE IF NOT EXISTS T (" + " K STRING(MAX)" + ") PRIMARY KEY (K)";
272
}
273
274
0 commit comments