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/06/17 20:46:16 UTC

phoenix git commit: PHOENIX-2276 Fix test failure

Repository: phoenix
Updated Branches:
  refs/heads/master 3581d2907 -> ac3c4ba07


PHOENIX-2276 Fix test failure


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

Branch: refs/heads/master
Commit: ac3c4ba072774deaf6bc9588d708bf3750262b3d
Parents: 3581d29
Author: Samarth <sa...@salesforce.com>
Authored: Fri Jun 17 13:46:10 2016 -0700
Committer: Samarth <sa...@salesforce.com>
Committed: Fri Jun 17 13:46:10 2016 -0700

----------------------------------------------------------------------
 .../org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/ac3c4ba0/phoenix-core/src/it/java/org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java
index f468d20..9970ce7 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/TenantSpecificViewIndexIT.java
@@ -199,8 +199,8 @@ public class TenantSpecificViewIndexIT extends BaseTenantSpecificViewIndexIT {
         rs = conn.createStatement().executeQuery("explain select pk2,col1 from " + viewName + " where col1='f'");
         if (localIndex) {
             assertEquals("CLIENT PARALLEL 1-WAY RANGE SCAN OVER "
-                    + SchemaUtil.getPhysicalHBaseTableName(tableName, isNamespaceMapped, PTableType.TABLE) + " ['"
-                    + tenantId + "',1,'f']\n" + "    SERVER FILTER BY FIRST KEY ONLY\n" + "CLIENT MERGE SORT",
+                    + SchemaUtil.getPhysicalHBaseTableName(tableName, isNamespaceMapped, PTableType.TABLE) + " [1,'"
+                    + tenantId + "','f']\n" + "    SERVER FILTER BY FIRST KEY ONLY\n" + "CLIENT MERGE SORT",
                     QueryUtil.getExplainPlan(rs));
         } else {
             assertEquals("CLIENT PARALLEL 1-WAY RANGE SCAN OVER "