Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
Signed-off-by: Rohit Nayak <[email protected]>
  • Loading branch information
rohit-nayak-ps committed Dec 27, 2023
1 parent 4ffe54e commit 331291e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/test/endtoend/vreplication/vdiff2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ func TestVDiff2(t *testing.T) {
generateMoreCustomers(t, sourceKs, 1000)

// Create rows in the nopk table using the customer names and random ages between 20 and 100.
_, err = vtgateConn.ExecuteFetch(fmt.Sprintf("insert into %s.nopk(name, age) select name, floor(rand()*80)+20 from %s.customer", sourceKs, sourceKs), -1, false)
require.NoError(t, err, "failed to insert rows into nopk table: %v", err)
query = "insert into nopk(name, age) select name, floor(rand()*80)+20 from customer"
execVtgateQuery(t, vtgateConn, fmt.Sprintf("%s:%s", sourceKs, sourceShards[0]), query)

// The primary tablet is only added in the first cell.
// We ONLY add primary tablets in this test.
Expand Down

0 comments on commit 331291e

Please sign in to comment.