Skip to content

Commit

Permalink
Add E2E test
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <florent.poinsard@outlook.fr>
  • Loading branch information
frouioui committed Nov 19, 2024
1 parent 579e92c commit 30dae54
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions go/test/endtoend/vtgate/queries/reference/reference_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,12 @@ func TestMultiReferenceQuery(t *testing.T) {

utils.Exec(t, conn, query)
}

func TestDMLReferenceUsingShardedKS(t *testing.T) {
utils.SkipIfBinaryIsBelowVersion(t, 22, "vtgate")
conn, closer := start(t)
defer closer()

utils.Exec(t, conn, "use sks")
utils.Exec(t, conn, "update zip_detail set zip_id = 1 where id = 1")
}

0 comments on commit 30dae54

Please sign in to comment.