You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by sa...@apache.org on 2016/11/15 21:50:38 UTC

phoenix git commit: PHOENIX-3481 Addendum - Use physical table name in modifyTable

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.1 d17657b4a -> 33c752ee5


PHOENIX-3481 Addendum - Use physical table name in modifyTable


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

Branch: refs/heads/4.x-HBase-1.1
Commit: 33c752ee525a354ea96295e6f44a8e42efbe1777
Parents: d17657b
Author: Samarth <sa...@salesforce.com>
Authored: Tue Nov 15 13:50:29 2016 -0800
Committer: Samarth <sa...@salesforce.com>
Committed: Tue Nov 15 13:50:29 2016 -0800

----------------------------------------------------------------------
 .../java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/33c752ee/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
index 1230139..99906dd 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
@@ -1071,7 +1071,7 @@ public class ConnectionQueryServicesImpl extends DelegateQueryServices implement
                      * brought down.
                      */
                     newDesc.setValue(HTableDescriptor.SPLIT_POLICY, MetaDataSplitPolicy.class.getName());
-                    modifyTable(tableName, newDesc, true);
+                    modifyTable(physicalTable, newDesc, true);
                 }
                 return null;
             } else {