Skip to content

Commit

Permalink
[release-16.0] vtgate: Allow additional errors in warnings test (#14461
Browse files Browse the repository at this point in the history
…) (#14463)

Signed-off-by: Dirkjan Bussink <d.bussink@gmail.com>
Signed-off-by: Harshit Gangal <harshit@planetscale.com>
Co-authored-by: Dirkjan Bussink <d.bussink@gmail.com>
  • Loading branch information
vitess-bot[bot] and dbussink authored Nov 10, 2023
1 parent 8ad1076 commit 79dd08a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions go/test/endtoend/vtgate/errors_as_warnings/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,17 @@ func TestScatterErrsAsWarns(t *testing.T) {
utils.Exec(t, mode.conn, "use @replica")
utils.Exec(t, mode.conn, fmt.Sprintf("set workload = %s", mode.m))

expectedWarnings := []string{
"operation not allowed in state NOT_SERVING",
"operation not allowed in state SHUTTING_DOWN",
"no valid tablet",
"no healthy tablet",
"mysql.sock: connect: no such file or directory",
}
utils.AssertMatches(t, mode.conn, query1, `[[INT64(4)]]`)
assertContainsOneOf(t, mode.conn, showQ, "no valid tablet", "no healthy tablet", "mysql.sock: connect: no such file or directory")
assertContainsOneOf(t, mode.conn, showQ, expectedWarnings...)
utils.AssertMatches(t, mode.conn, query2, `[[INT64(4)]]`)
assertContainsOneOf(t, mode.conn, showQ, "no valid tablet", "no healthy tablet", "mysql.sock: connect: no such file or directory")
assertContainsOneOf(t, mode.conn, showQ, expectedWarnings...)

// invalid_field should throw error and not warning
_, err = mode.conn.ExecuteFetch("SELECT /*vt+ PLANNER=Gen4 SCATTER_ERRORS_AS_WARNINGS */ invalid_field from t1;", 1, false)
Expand Down

0 comments on commit 79dd08a

Please sign in to comment.