From c0710ba77bb167632a7e823c3ba8f489e797bd35 Mon Sep 17 00:00:00 2001 From: Andres Taylor Date: Thu, 19 Dec 2024 08:33:16 +0100 Subject: [PATCH] test: test with more values Signed-off-by: Andres Taylor --- go/test/endtoend/vtgate/queries/misc/misc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/test/endtoend/vtgate/queries/misc/misc_test.go b/go/test/endtoend/vtgate/queries/misc/misc_test.go index 3f24f6b01cb..62b859ab1d3 100644 --- a/go/test/endtoend/vtgate/queries/misc/misc_test.go +++ b/go/test/endtoend/vtgate/queries/misc/misc_test.go @@ -135,7 +135,7 @@ func TestCast(t *testing.T) { func TestSetAndGetLastInsertID(t *testing.T) { notZero := 1 checkQuery := func(i string, workload string, tx bool, mcmp utils.MySQLCompare) { - for _, val := range []int{0, notZero} { + for _, val := range []int{notZero, 0, notZero * 2} { query := fmt.Sprintf(i, val) name := fmt.Sprintf("%s - %s", workload, query) if tx {