Skip to content

Commit

Permalink
Fix bad conflict fix
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Jun 19, 2024
1 parent 529c16b commit 4ac6278
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go/test/endtoend/utils/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ func compareVitessAndMySQLResults(t TestingT, query string, vtQr, mysqlQr *sqlty
return
}
if vtQr == nil {
t.Error("Vitess result is 'nil' while MySQL's is not.")
t.Errorf("Vitess result is 'nil' while MySQL's is not.")
return
}
if mysqlQr == nil {
t.Error("MySQL result is 'nil' while Vitess' is not.")
t.Errorf("MySQL result is 'nil' while Vitess' is not.")
return
}
if compareColumns {
Expand All @@ -162,7 +162,7 @@ func compareVitessAndMySQLResults(t TestingT, query string, vtQr, mysqlQr *sqlty
}
stmt, err := sqlparser.Parse(query)
if err != nil {
t.Error(err)
t.Errorf(err.Error())
return
}
orderBy := false
Expand Down

0 comments on commit 4ac6278

Please sign in to comment.