You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by td...@apache.org on 2016/08/01 19:17:37 UTC

phoenix git commit: PHOENIX-3120 AsyncIndexRebuilderTask fails for transactional tables (addendum)

Repository: phoenix
Updated Branches:
  refs/heads/master 7a27282f2 -> 545cc1c02


PHOENIX-3120 AsyncIndexRebuilderTask fails for transactional tables (addendum)


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

Branch: refs/heads/master
Commit: 545cc1c025ec56ef174f117f8d96212457f96363
Parents: 7a27282
Author: Thomas D'Silva <td...@salesforce.com>
Authored: Mon Aug 1 12:00:27 2016 -0700
Committer: Thomas D'Silva <td...@salesforce.com>
Committed: Mon Aug 1 12:17:18 2016 -0700

----------------------------------------------------------------------
 .../it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/545cc1c0/phoenix-core/src/it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java
index c335ff8..cb41d2b 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/MutableIndexToolIT.java
@@ -45,8 +45,9 @@ public class MutableIndexToolIT extends BaseOwnClusterHBaseManagedTimeIT {
     
     @BeforeClass
     public static void doSetup() throws Exception {
-        Map<String, String> serverProps = Maps.newHashMapWithExpectedSize(1);
+        Map<String, String> serverProps = Maps.newHashMapWithExpectedSize(2);
         serverProps.put(QueryServices.EXTRA_JDBC_ARGUMENTS_ATTRIB, QueryServicesOptions.DEFAULT_EXTRA_JDBC_ARGUMENTS);
+        serverProps.put(QueryServices.ASYNC_INDEX_AUTO_BUILD_ATTRIB, Boolean.toString(false));
         setUpRealDriver(new ReadOnlyProps(serverProps.entrySet().iterator()), ReadOnlyProps.EMPTY_PROPS);
     }