Skip to content

Commit

Permalink
fix route plan unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Harshit Gangal <harshit@planetscale.com>
  • Loading branch information
harshit-gangal committed Jul 19, 2021
1 parent 321dd4e commit 08fc0be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/vt/vtgate/planbuilder/route_planning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ func TestMergeJoins(t *testing.T) {
}, {
l: selectDBA(1, ks),
r: selectDBA(2, ks2),
expected: nil,
expected: selectDBA(1|2, ks),
}, {
l: selectDBA(2, ks),
r: selectDBA(1, ks2),
expected: nil,
expected: selectDBA(1|2, ks),
}, {
l: unsharded(1, ks),
r: selectDBA(2, ks),
Expand Down

0 comments on commit 08fc0be

Please sign in to comment.