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 2014/10/06 18:19:42 UTC

git commit: Fix constant declaration for better readability

Repository: phoenix
Updated Branches:
  refs/heads/master 9b98d0a8c -> 719eaf07a


Fix constant declaration for better readability


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

Branch: refs/heads/master
Commit: 719eaf07aea4b79b2b322ee2064dc54835adf4e2
Parents: 9b98d0a
Author: James Taylor <jt...@salesforce.com>
Authored: Mon Oct 6 09:25:08 2014 -0700
Committer: James Taylor <jt...@salesforce.com>
Committed: Mon Oct 6 09:25:08 2014 -0700

----------------------------------------------------------------------
 .../it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/719eaf07/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java
index 97ca828..e48a938 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ParallelIteratorsIT.java
@@ -63,7 +63,7 @@ public class ParallelIteratorsIT extends BaseHBaseManagedTimeIT {
     public static void doSetup() throws Exception {
         Map<String,String> props = Maps.newHashMapWithExpectedSize(3);
         // Must update config before starting server
-        props.put(QueryServices.HISTOGRAM_BYTE_DEPTH_ATTRIB, Long.toString(20l));
+        props.put(QueryServices.HISTOGRAM_BYTE_DEPTH_ATTRIB, Long.toString(20));
         props.put(QueryServices.DROP_METADATA_ATTRIB, Boolean.toString(true));
         setUpTestDriver(new ReadOnlyProps(props.entrySet().iterator()));
     }