You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by td...@apache.org on 2015/12/09 01:54:03 UTC

phoenix git commit: PHOENIX-2494 Fix test failure AlterTableWithViewsIT.testMakeBaseTableTransactional

Repository: phoenix
Updated Branches:
  refs/heads/master b74215f82 -> bf0661775


PHOENIX-2494 Fix test failure AlterTableWithViewsIT.testMakeBaseTableTransactional


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

Branch: refs/heads/master
Commit: bf06617754ac408279a1359cc660239fbab05ad5
Parents: b74215f
Author: Thomas D'Silva <td...@salesforce.com>
Authored: Tue Dec 8 16:51:26 2015 -0800
Committer: Thomas D'Silva <td...@salesforce.com>
Committed: Tue Dec 8 16:51:26 2015 -0800

----------------------------------------------------------------------
 .../java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/bf066177/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
index f997149..4361b1d 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
@@ -1838,7 +1838,6 @@ public class MetaDataEndpointImpl extends MetaDataProtocol implements Coprocesso
         }
         // Sort the puts by ordinal position 
         Collections.sort(columnPutsForBaseTable);
-        assert columnPutsForBaseTable.size() > 0;
         for (Result viewResult : childViewsResult.getResults()) {
             short deltaNumPkColsSoFar = 0;
             short columnsAddedToView = 0;