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

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


The following commit(s) were added to refs/heads/4.x-HBase-1.3 by this push:
     new ef80a10  PHOENIX-5326 IndexToolIT takes over 20-30 minutes.
ef80a10 is described below

commit ef80a10dbeb04a47630f523f4b2d81725ff74d1c
Author: Lars Hofhansl <[email protected]>
AuthorDate: Tue Jun 11 10:54:42 2019 -0700

    PHOENIX-5326 IndexToolIT takes over 20-30 minutes.
---
 .../src/it/java/org/apache/phoenix/end2end/IndexToolIT.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
index 8188e53..d5f9204 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolIT.java
@@ -137,17 +137,17 @@ public class IndexToolIT extends 
BaseUniqueNamesOwnClusterIT {
                                     
TransactionFactory.Provider.valueOf(transactionProvider))
                                 .isUnsupported(Feature.ALLOW_LOCAL_INDEX)) {
                         for (boolean directApi : Booleans) {
-                            for (boolean useSnapshot : Booleans) {
-                                list.add(new Object[] { transactionProvider, 
mutable, localIndex,
-                                        directApi, useSnapshot, false});
-                            }
+                            list.add(new Object[] { transactionProvider, 
mutable, localIndex,
+                                    directApi, false, false});
                         }
                     }
                 }
             }
         }
         // Add the usetenantId
-        list.add(new Object[] { "", false, false, true, false, true});
+        list.add(new Object[] { null, false, false, true, false, true});
+        // do one run over snapshots
+        list.add(new Object[] { null, false, false, true, true, false});
         return TestUtil.filterTxParamData(list,0);
     }
 

Reply via email to