You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ja...@apache.org on 2016/10/26 00:19:57 UTC

phoenix git commit: PHOENIX-3382 Query using Row Value Constructor comprised of non leading PK columns returns incorrect results (missing file)

Repository: phoenix
Updated Branches:
  refs/heads/4.8-HBase-0.98 c394b4ee1 -> 0aafcd4f5


PHOENIX-3382 Query using Row Value Constructor comprised of non leading PK columns returns incorrect results (missing file)


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

Branch: refs/heads/4.8-HBase-0.98
Commit: 0aafcd4f5553f7af44d5c048046f213d630b3e96
Parents: c394b4e
Author: James Taylor <ja...@apache.org>
Authored: Tue Oct 25 17:19:29 2016 -0700
Committer: James Taylor <ja...@apache.org>
Committed: Tue Oct 25 17:19:29 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/phoenix/blob/0aafcd4f/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryMoreIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryMoreIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryMoreIT.java
index 3172a20..c8eb95a 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryMoreIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryMoreIT.java
@@ -375,7 +375,7 @@ public class QueryMoreIT extends BaseHBaseManagedTimeTableReuseIT {
     @Test
     public void testRVCOnDescWithLeadingPKEquality() throws Exception {
         final Connection conn = DriverManager.getConnection(getUrl());
-        String fullTableName = generateUniqueName();
+        String fullTableName = generateRandomString();
         try (Statement stmt = conn.createStatement()) {
             stmt.execute("CREATE TABLE " + fullTableName + "(\n" + 
                     "    ORGANIZATION_ID CHAR(15) NOT NULL,\n" + 
@@ -435,7 +435,7 @@ public class QueryMoreIT extends BaseHBaseManagedTimeTableReuseIT {
     @Test
     public void testSingleDescPKColumnComparison() throws Exception {
         final Connection conn = DriverManager.getConnection(getUrl());
-        String fullTableName = generateUniqueName();
+        String fullTableName = generateRandomString();
         try (Statement stmt = conn.createStatement()) {
             stmt.execute("CREATE TABLE " + fullTableName + "(\n" + 
                     "    ORGANIZATION_ID CHAR(15) NOT NULL,\n" +