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

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


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

commit c8b794f0cf8b95fa27c7ec5ab3160040215b5be4
Author: Lars Hofhansl <[email protected]>
AuthorDate: Sun Jun 16 12:35:25 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));

Reply via email to