Skip to content

Commit

Permalink
Make test cases pass, but document differences between Vitess and MySQL.
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schreiber <arthurschreiber@github.com>
  • Loading branch information
arthurschreiber committed Apr 11, 2024
1 parent c053a3a commit 7bee257
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions go/test/endtoend/vtgate/queries/dml/insert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,9 @@ func TestInsertShardedWithOnDuplicateKeyNoInserts(t *testing.T) {

vitessResult = utils.Exec(t, mcmp.VtConn, query)
assert.Equal(t, mysqlResult.RowsAffected, vitessResult.RowsAffected)
assert.Equal(t, mysqlResult.InsertID, vitessResult.InsertID)
// Vitess can't return the `auto_increment` value of the last updated row, but it returns a value larger than 0.
assert.Greater(t, vitessResult.InsertID, uint64(0))
assert.NotEqual(t, mysqlResult.InsertID, vitessResult.InsertID)

// Second test case, insert multiple rows, all of which already exist, and change a column on existing rows.
query = "insert into last_insert_id_test (sharding_key, user_id, reason) values ('2:2:2', 2, 'qux'), ('1:1:1', 1, 'baz') on duplicate key update reason = VALUES(reason)"
Expand All @@ -444,7 +446,9 @@ func TestInsertShardedWithOnDuplicateKeyNoInserts(t *testing.T) {

vitessResult = utils.Exec(t, mcmp.VtConn, query)
assert.Equal(t, mysqlResult.RowsAffected, vitessResult.RowsAffected)
assert.Equal(t, mysqlResult.InsertID, vitessResult.InsertID)
// Vitess can't return the `auto_increment` value of the last updated row, but it returns a value larger than 0.
assert.Greater(t, vitessResult.InsertID, uint64(0))
assert.NotEqual(t, mysqlResult.InsertID, vitessResult.InsertID)

// Third test case, insert multiple rows, some of which already exist, and change a column on existing rows.
query = "insert into last_insert_id_test (sharding_key, user_id, reason) values ('3:3:3', 3, 'apa'), ('2:2:2', 2, 'bpa'), ('1:1:1', 1, 'cpa') on duplicate key update reason = VALUES(reason)"
Expand Down

0 comments on commit 7bee257

Please sign in to comment.