David Ribeiro Alves has posted comments on this change. Change subject: KUDU-1905 - Allow reinserts on pk only tables ......................................................................
Patch Set 2: (1 comment) http://gerrit.cloudera.org:8080/#/c/6258/2/src/kudu/integration-tests/fuzz-itest.cc File src/kudu/integration-tests/fuzz-itest.cc: PS2, Line 446: case TEST_INSERT: : if (exists[row_key]) continue; : ops->push_back({TEST_INSERT, row_key}); : exists[row_key] = true; : ops_pending = true; : data_in_mrs = true; : break; : case TEST_INSERT_PK_ONLY: : if (exists[row_key]) continue; : ops->push_back({TEST_INSERT_PK_ONLY, row_key}); : exists[row_key] = true; : ops_pending = true; : data_in_mrs = true; : > you can combine these two cases by doing ops->push_back({r, row_key}) right Done -- To view, visit http://gerrit.cloudera.org:8080/6258 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: comment Gerrit-Change-Id: I7ce03378c7b97fac8ad8cb7783dec4a1b0277344 Gerrit-PatchSet: 2 Gerrit-Project: kudu Gerrit-Branch: master Gerrit-Owner: David Ribeiro Alves <[email protected]> Gerrit-Reviewer: David Ribeiro Alves <[email protected]> Gerrit-Reviewer: Kudu Jenkins Gerrit-Reviewer: Todd Lipcon <[email protected]> Gerrit-HasComments: Yes
