Skip to content

Commit 47cea06

Browse files
fixup! Simple support for de-duplicating tuple values.
Signed-off-by: Arthur Schreiber <[email protected]>
1 parent 88b2040 commit 47cea06

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

go/vt/vtgate/executor_select_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3337,29 +3337,25 @@ func TestSelectWithUnionAll(t *testing.T) {
33373337
BindVariables: map[string]*querypb.BindVariable{
33383338
"__vals": bv1,
33393339
"vtg1": bv,
3340-
"vtg2": bv,
33413340
},
33423341
}, {
33433342
Sql: "select id from `user` where id in ::__vals",
33443343
BindVariables: map[string]*querypb.BindVariable{
33453344
"__vals": bv1,
33463345
"vtg1": bv,
3347-
"vtg2": bv,
33483346
},
33493347
}}
33503348
sbc2WantQueries := []*querypb.BoundQuery{{
33513349
Sql: "select id from `user` where id in ::__vals",
33523350
BindVariables: map[string]*querypb.BindVariable{
33533351
"__vals": bv2,
33543352
"vtg1": bv,
3355-
"vtg2": bv,
33563353
},
33573354
}, {
33583355
Sql: "select id from `user` where id in ::__vals",
33593356
BindVariables: map[string]*querypb.BindVariable{
33603357
"__vals": bv2,
33613358
"vtg1": bv,
3362-
"vtg2": bv,
33633359
},
33643360
}}
33653361
session := &vtgatepb.Session{

0 commit comments

Comments
 (0)