Skip to content

Commit

Permalink
Relax vexplain test for upcoming changes (#17035)
Browse files Browse the repository at this point in the history
Signed-off-by: Dirkjan Bussink <[email protected]>
  • Loading branch information
dbussink authored Oct 22, 2024
1 parent 1a3b5a1 commit ac11a8c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions go/test/endtoend/vtgate/queries/vexplain/vexplain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ func start(t *testing.T) (*mysql.Conn, func()) {
}

func TestVtGateVExplain(t *testing.T) {
if utils.BinaryIsAtLeastAtVersion(22, "vtgate") {
t.Skip("v22 changes the output of vexplain queries because of binary bind vars which breaks this test.")
}
conn, closer := start(t)
defer closer()

Expand Down

0 comments on commit ac11a8c

Please sign in to comment.