You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by la...@apache.org on 2019/06/16 19:36:07 UTC

[phoenix] branch 4.x-HBase-1.4 updated: PHOENIX-5346 Add serial hint to SaltedIndexIT.

This is an automated email from the ASF dual-hosted git repository.

larsh pushed a commit to branch 4.x-HBase-1.4
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.4 by this push:
     new 842b29b  PHOENIX-5346 Add serial hint to SaltedIndexIT.
842b29b is described below

commit 842b29b01cb116037ededad3b2fd8c53f53e9670
Author: Lars Hofhansl <la...@apache.org>
AuthorDate: Sun Jun 16 12:36:31 2019 -0700

    PHOENIX-5346 Add serial hint to SaltedIndexIT.
---
 .../src/it/java/org/apache/phoenix/end2end/index/SaltedIndexIT.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/SaltedIndexIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/SaltedIndexIT.java
index 06e7ede..530c219 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/SaltedIndexIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/SaltedIndexIT.java
@@ -123,7 +123,7 @@ public class SaltedIndexIT extends ParallelStatsDisabledIT {
         stmt.execute();
         conn.commit();
 
-        query = "SELECT * FROM " + indexTableFullName;
+        query = "SELECT /*+ SERIAL */ * FROM " + indexTableFullName;
         rs = conn.createStatement().executeQuery(query);
         assertTrue(rs.next());
         assertEquals("y",rs.getString(1));