Skip to content

Commit d270a08

Browse files
committed
fix: add missing return statement
1 parent 0f9e774 commit d270a08

File tree

1 file changed

+3
-2
lines changed
  • google-cloud-spanner/src/test/java/com/google/cloud/spanner/it

1 file changed

+3
-2
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITUuidTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public static List<DialectTestParameter> data() {
7777
new DialectTestParameter(Dialect.GOOGLE_STANDARD_SQL),
7878
new DialectTestParameter(Dialect.POSTGRESQL));
7979
}
80+
return Collections.emptyList();
8081
}
8182

8283
@Parameterized.Parameter() public DialectTestParameter dialect;
@@ -91,7 +92,7 @@ public static List<DialectTestParameter> data() {
9192
+ " UuidValue UUID,"
9293
+ " UuidArrayValue ARRAY<UUID>,"
9394
+ ") PRIMARY KEY (Key)",
94-
"CREATE TABLE UK (" + " Key UUID NOT NULL," + ") PRIMARY KEY (Key)",
95+
"CREATE TABLE UK (" + " Key UUID NOT NULL," + ") PRIMARY KEY (Key)",
9596
};
9697

9798
private static final String[] POSTGRESQL_SCHEMA =
@@ -101,7 +102,7 @@ public static List<DialectTestParameter> data() {
101102
+ " UuidValue UUID,"
102103
+ " UuidArrayValue UUID[]"
103104
+ ")",
104-
"CREATE TABLE UK (" + " Key UUID PRIMARY KEY" + ")",
105+
"CREATE TABLE UK (" + " Key UUID PRIMARY KEY" + ")",
105106
};
106107

107108
private static DatabaseClient client;

0 commit comments

Comments
 (0)