Skip to content

Commit

Permalink
fix TestAddIndexFetchRowsFromCoprocessor
Browse files Browse the repository at this point in the history
  • Loading branch information
tangenta committed Nov 25, 2022
1 parent 1399840 commit 2642946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddl/index_cop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestAddIndexFetchRowsFromCoprocessor(t *testing.T) {
require.NoError(t, err)
idxRec, done, err := ddl.FetchRowsFromCop4Test(copCtx, startKey, endKey, txn.StartTS(), 10)
require.NoError(t, err)
require.True(t, done)
require.False(t, done)
require.NoError(t, txn.Rollback())

handles := make([]kv.Handle, 0, len(idxRec))
Expand Down

0 comments on commit 2642946

Please sign in to comment.