You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/07/31 18:56:54 UTC

[accumulo] branch master updated (18e3f86 -> b9505a6)

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git.


    from 18e3f86  Bump master branch version to 2.1.0
     new d3d32d9  Refactor how constraint violations are handled
     new 6f2c217  Further refactored constraint handling code #824
     new b9505a6  Merge pull request #1276 from lbschanno/accumulo-824

The 10168 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../accumulo/core/constraints/Violations.java      |  10 +-
 .../tserver/TConstraintViolationException.java     |  55 --------
 .../org/apache/accumulo/tserver/TabletServer.java  | 151 ++++++++++-----------
 .../accumulo/tserver/tablet/PreparedMutations.java |  97 +++++++++++++
 .../org/apache/accumulo/tserver/tablet/Tablet.java |  70 +++++-----
 .../tablet/TabletMutationPrepAttemptTest.java      |  78 +++++++++++
 6 files changed, 294 insertions(+), 167 deletions(-)
 delete mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/TConstraintViolationException.java
 create mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/PreparedMutations.java
 create mode 100644 server/tserver/src/test/java/org/apache/accumulo/tserver/tablet/TabletMutationPrepAttemptTest.java