@@ -643,7 +643,7 @@ public static Map<String, SpannerTable> getSampleSpSchema() {
643643 return spSchema ;
644644 }
645645
646- public static Map <String , NameAndCols > getSampleSpannerToId () {
646+ private static Map <String , NameAndCols > getSampleSpannerToId () {
647647 Map <String , NameAndCols > spannerToId = new HashMap <String , NameAndCols >();
648648 Map <String , String > t1ColIds = new HashMap <String , String >();
649649 t1ColIds .put ("accountId" , "c1" );
@@ -654,7 +654,7 @@ public static Map<String, NameAndCols> getSampleSpannerToId() {
654654 return spannerToId ;
655655 }
656656
657- static Ddl getTestDdl () {
657+ private static Ddl getTestDdl () {
658658 Ddl ddl =
659659 Ddl .builder ()
660660 .createTable ("tableName" )
@@ -678,7 +678,7 @@ static Ddl getTestDdl() {
678678 return ddl ;
679679 }
680680
681- static Ddl getTestDdlForPrimaryKeyTest () {
681+ private static Ddl getTestDdlForPrimaryKeyTest () {
682682
683683 Ddl ddl =
684684 Ddl .builder ()
@@ -743,7 +743,7 @@ static Ddl getTestDdlForPrimaryKeyTest() {
743743 return ddl ;
744744 }
745745
746- public static Schema getSchemaObjectAllDatatypes () {
746+ private static Schema getSchemaObjectAllDatatypes () {
747747 Map <String , SyntheticPKey > syntheticPKeys = new HashMap <String , SyntheticPKey >();
748748 Map <String , SourceTable > srcSchema = new HashMap <String , SourceTable >();
749749 Map <String , SpannerTable > spSchema = getSampleSpSchemaAllDatatypes ();
@@ -753,7 +753,7 @@ public static Schema getSchemaObjectAllDatatypes() {
753753 return expectedSchema ;
754754 }
755755
756- public static Map <String , SpannerTable > getSampleSpSchemaAllDatatypes () {
756+ private static Map <String , SpannerTable > getSampleSpSchemaAllDatatypes () {
757757 Map <String , SpannerTable > spSchema = new HashMap <String , SpannerTable >();
758758 Map <String , SpannerColumnDefinition > t1SpColDefs =
759759 new HashMap <String , SpannerColumnDefinition >();
@@ -813,7 +813,7 @@ public static Map<String, SpannerTable> getSampleSpSchemaAllDatatypes() {
813813 return spSchema ;
814814 }
815815
816- public static Map <String , NameAndCols > getSampleSpannerToIdAllDatatypes () {
816+ private static Map <String , NameAndCols > getSampleSpannerToIdAllDatatypes () {
817817 Map <String , NameAndCols > spannerToId = new HashMap <String , NameAndCols >();
818818 Map <String , String > t1ColIds = new HashMap <String , String >();
819819 t1ColIds .put ("first_name" , "c1" );
@@ -834,7 +834,7 @@ public static Map<String, NameAndCols> getSampleSpannerToIdAllDatatypes() {
834834 return spannerToId ;
835835 }
836836
837- public static Schema getBotchedSchemaObjectForInvalidSpannerToOid () {
837+ private static Schema getBotchedSchemaObjectForInvalidSpannerToOid () {
838838 Map <String , SyntheticPKey > syntheticPKeys = new HashMap <String , SyntheticPKey >();
839839 Map <String , SourceTable > srcSchema = new HashMap <String , SourceTable >();
840840 Map <String , SpannerTable > spSchema = getSampleSpSchema ();
@@ -844,7 +844,7 @@ public static Schema getBotchedSchemaObjectForInvalidSpannerToOid() {
844844 return expectedSchema ;
845845 }
846846
847- public static Schema getBotchedSchemaObjectForInvalidSpSchema () {
847+ private static Schema getBotchedSchemaObjectForInvalidSpSchema () {
848848 Map <String , SyntheticPKey > syntheticPKeys = new HashMap <String , SyntheticPKey >();
849849 Map <String , SourceTable > srcSchema = new HashMap <String , SourceTable >();
850850 Map <String , SpannerTable > spSchema = getBotchedSampleSpSchema ();
@@ -854,7 +854,7 @@ public static Schema getBotchedSchemaObjectForInvalidSpSchema() {
854854 return expectedSchema ;
855855 }
856856
857- public static Schema getBotchedSchemaObjectForMissingShardColumn () {
857+ private static Schema getBotchedSchemaObjectForMissingShardColumn () {
858858 Map <String , SyntheticPKey > syntheticPKeys = new HashMap <String , SyntheticPKey >();
859859 Map <String , SourceTable > srcSchema = new HashMap <String , SourceTable >();
860860 Map <String , SpannerTable > spSchema = getBotchedSampleSpColmSchema ();
@@ -864,7 +864,7 @@ public static Schema getBotchedSchemaObjectForMissingShardColumn() {
864864 return expectedSchema ;
865865 }
866866
867- public static Map <String , SpannerTable > getBotchedSampleSpSchema () {
867+ private static Map <String , SpannerTable > getBotchedSampleSpSchema () {
868868 Map <String , SpannerTable > spSchema = new HashMap <String , SpannerTable >();
869869 Map <String , SpannerColumnDefinition > t1SpColDefs =
870870 new HashMap <String , SpannerColumnDefinition >();
@@ -888,7 +888,7 @@ public static Map<String, SpannerTable> getBotchedSampleSpSchema() {
888888 return spSchema ;
889889 }
890890
891- public static Map <String , NameAndCols > getBotchedSampleSpannerToId () {
891+ private static Map <String , NameAndCols > getBotchedSampleSpannerToId () {
892892 Map <String , NameAndCols > spannerToId = new HashMap <String , NameAndCols >();
893893 Map <String , String > t1ColIds = new HashMap <String , String >();
894894 t1ColIds .put ("accountId" , "c1" );
@@ -899,7 +899,7 @@ public static Map<String, NameAndCols> getBotchedSampleSpannerToId() {
899899 return spannerToId ;
900900 }
901901
902- public static Map <String , SpannerTable > getBotchedSampleSpColmSchema () {
902+ private static Map <String , SpannerTable > getBotchedSampleSpColmSchema () {
903903 Map <String , SpannerTable > spSchema = new HashMap <String , SpannerTable >();
904904 Map <String , SpannerColumnDefinition > t1SpColDefs =
905905 new HashMap <String , SpannerColumnDefinition >();
0 commit comments