Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.0 637fefee0 -> b8afc8f1f
PHOENIX-2478 Rows committed in transaction overlapping index creation are not populated Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/b8afc8f1 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/b8afc8f1 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/b8afc8f1 Branch: refs/heads/4.x-HBase-1.0 Commit: b8afc8f1faac0a1ffb0e71fd119f2b97d55857fa Parents: 637fefe Author: James Taylor <[email protected]> Authored: Tue Jan 19 13:16:50 2016 -0800 Committer: James Taylor <[email protected]> Committed: Tue Jan 19 13:18:30 2016 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/phoenix/execute/MutationState.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/b8afc8f1/phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java b/phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java index d4d893b..36b1593 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java @@ -1231,10 +1231,6 @@ public class MutationState implements SQLCloseable { throw new TableNotFoundException(dataTable.getSchemaName().getString(), dataTable.getTableName().getString()); } tableRef.setTable(result.getTable()); - if (!result.wasUpdated()) { - if (logger.isInfoEnabled()) logger.info("No updates to " + dataTable.getName().getString() + " as of " + timestamp); - continue; - } if (!addedIndexes) { // TODO: in theory we should do a deep equals check here, as it's possible // that an index was dropped and recreated with the same name but different
