File tree Expand file tree Collapse file tree 2 files changed +18
-14
lines changed
google-cloud-spanner/src/test/java/com/google/cloud/spanner Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -312,13 +312,13 @@ public static Collection<Object[]> parameters() {
312312 "getDate" ,
313313 Collections .singletonList ("getValue" )
314314 },
315- {
316- Type .uuid (),
317- "getUuidInternal" ,
318- UUID .randomUUID (),
319- "getUuid" ,
320- Collections .singletonList ("getValue" )
321- },
315+ {
316+ Type .uuid (),
317+ "getUuidInternal" ,
318+ UUID .randomUUID (),
319+ "getUuid" ,
320+ Collections .singletonList ("getValue" )
321+ },
322322 {
323323 Type .array (Type .bool ()),
324324 "getBooleanArrayInternal" ,
@@ -441,13 +441,13 @@ public static Collection<Object[]> parameters() {
441441 "getDateList" ,
442442 Collections .singletonList ("getValue" )
443443 },
444- {
445- Type .array (Type .uuid ()),
446- "getUuidListInternal" ,
447- Arrays .asList (UUID .randomUUID (), UUID .randomUUID ()),
448- "getUuidList" ,
449- Collections .singletonList ("getValue" )
450- },
444+ {
445+ Type .array (Type .uuid ()),
446+ "getUuidListInternal" ,
447+ Arrays .asList (UUID .randomUUID (), UUID .randomUUID ()),
448+ "getUuidList" ,
449+ Collections .singletonList ("getValue" )
450+ },
451451 {
452452 Type .array (Type .struct (StructField .of ("f1" , Type .int64 ()))),
453453 "getStructListInternal" ,
Original file line number Diff line number Diff line change 5151import org .junit .runner .RunWith ;
5252import org .junit .runners .Parameterized ;
5353
54+ /**
55+ * Class for running integration tests for UUID data type.
56+ * It tests read and write operations involving UUID as key and non-key columns.
57+ */
5458@ Category (ParallelIntegrationTest .class )
5559@ RunWith (Parameterized .class )
5660public class ITUuidTest {
You can’t perform that action at this time.
0 commit comments