You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by an...@apache.org on 2017/12/29 07:12:59 UTC

phoenix git commit: PHOENIX-4493 Fix DropColumnIT

Repository: phoenix
Updated Branches:
  refs/heads/5.x-HBase-2.0 e43202f3e -> b9fb72aa4


PHOENIX-4493 Fix DropColumnIT


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/b9fb72aa
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/b9fb72aa
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/b9fb72aa

Branch: refs/heads/5.x-HBase-2.0
Commit: b9fb72aa49635817b0029a8fbe24760398bfb468
Parents: e43202f
Author: Ankit Singhal <an...@gmail.com>
Authored: Fri Dec 29 12:42:35 2017 +0530
Committer: Ankit Singhal <an...@gmail.com>
Committed: Fri Dec 29 12:42:35 2017 +0530

----------------------------------------------------------------------
 .../phoenix/coprocessor/UngroupedAggregateRegionObserver.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/b9fb72aa/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/UngroupedAggregateRegionObserver.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/UngroupedAggregateRegionObserver.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/UngroupedAggregateRegionObserver.java
index a3d219f..7052859 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/UngroupedAggregateRegionObserver.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/UngroupedAggregateRegionObserver.java
@@ -713,7 +713,7 @@ public class UngroupedAggregateRegionObserver extends BaseScannerRegionObserver
                                 Delete delete = new Delete(results.get(0).getRowArray(),
                                     results.get(0).getRowOffset(),
                                     results.get(0).getRowLength());
-                                delete.addColumn(deleteCF,  deleteCQ, ts);
+                                delete.addColumns(deleteCF,  deleteCQ, ts);
                                 // force tephra to ignore this deletes
                                 delete.setAttribute(PhoenixTransactionContext.TX_ROLLBACK_ATTRIBUTE_KEY, new byte[0]);
                                 mutations.add(delete);