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/22 02:54:11 UTC

[07/36] phoenix git commit: PHOENIX-3481 Addendum - Use physical table name in modifyTable

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/ccc58a52
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/ccc58a52
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/ccc58a52

Branch: refs/heads/encodecolumns2
Commit: ccc58a524153e5eba38860afea140826f204e8eb
Parents: 298f7c7
Author: Samarth <sa...@salesforce.com>
Authored: Tue Nov 15 13:52:38 2016 -0800
Committer: Samarth <sa...@salesforce.com>
Committed: Tue Nov 15 13:52:38 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/ccc58a52/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 78d9b14..f458f09 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
@@ -1073,7 +1073,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 {