@@ -5937,7 +5937,7 @@ func TestClient_BatchWrite(t *testing.T) {
5937
5937
defer teardown ()
5938
5938
mutationGroups := []* MutationGroup {
5939
5939
{[]* Mutation {
5940
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
5940
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
5941
5941
}},
5942
5942
}
5943
5943
iter := client .BatchWrite (context .Background (), mutationGroups )
@@ -5972,7 +5972,7 @@ func TestClient_BatchWrite_SessionNotFound(t *testing.T) {
5972
5972
)
5973
5973
mutationGroups := []* MutationGroup {
5974
5974
{[]* Mutation {
5975
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
5975
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
5976
5976
}},
5977
5977
}
5978
5978
iter := client .BatchWrite (context .Background (), mutationGroups )
@@ -6010,7 +6010,7 @@ func TestClient_BatchWrite_Error(t *testing.T) {
6010
6010
)
6011
6011
mutationGroups := []* MutationGroup {
6012
6012
{[]* Mutation {
6013
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
6013
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
6014
6014
}},
6015
6015
}
6016
6016
iter := client .BatchWrite (context .Background (), mutationGroups )
@@ -6085,7 +6085,7 @@ func TestClient_BatchWrite_Options(t *testing.T) {
6085
6085
6086
6086
mutationGroups := []* MutationGroup {
6087
6087
{[]* Mutation {
6088
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
6088
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
6089
6089
}},
6090
6090
}
6091
6091
iter := client .BatchWriteWithOptions (context .Background (), mutationGroups , tt .write )
@@ -6131,7 +6131,7 @@ func checkBatchWriteSpan(t *testing.T, errors []error, code codes.Code) {
6131
6131
)
6132
6132
mutationGroups := []* MutationGroup {
6133
6133
{[]* Mutation {
6134
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
6134
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
6135
6135
}},
6136
6136
}
6137
6137
iter := client .BatchWrite (context .Background (), mutationGroups )
@@ -6683,7 +6683,7 @@ func TestClient_BatchWriteExcludeTxnFromChangeStreams(t *testing.T) {
6683
6683
6684
6684
mutationGroups := []* MutationGroup {
6685
6685
{[]* Mutation {
6686
- {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }},
6686
+ {opInsertOrUpdate , "t_test" , nil , []string {"key" , "val" }, []interface {}{"foo1" , 1 }, nil },
6687
6687
}},
6688
6688
}
6689
6689
iter := client .BatchWriteWithOptions (context .Background (), mutationGroups , BatchWriteOptions {ExcludeTxnFromChangeStreams : true })
0 commit comments