You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lens.apache.org by jd...@apache.org on 2015/06/23 12:25:20 UTC

[32/51] [abbrv] incubator-lens git commit: LENS-613: Build failure due to checkstyle issues after LENS-611

LENS-613: Build failure due to checkstyle issues after LENS-611


Project: http://git-wip-us.apache.org/repos/asf/incubator-lens/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-lens/commit/37d2fc10
Tree: http://git-wip-us.apache.org/repos/asf/incubator-lens/tree/37d2fc10
Diff: http://git-wip-us.apache.org/repos/asf/incubator-lens/diff/37d2fc10

Branch: refs/heads/current-release-line
Commit: 37d2fc1050833cfe237e75b4306e6eb9dc07b745
Parents: ede537e
Author: Himanshu Gahlaut <ga...@gmail.com>
Authored: Wed Jun 17 16:38:46 2015 +0530
Committer: Himanshu Gahlaut <hi...@apache.org>
Committed: Wed Jun 17 16:38:46 2015 +0530

----------------------------------------------------------------------
 .../lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-lens/blob/37d2fc10/lens-cube/src/test/java/org/apache/lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java
----------------------------------------------------------------------
diff --git a/lens-cube/src/test/java/org/apache/lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java b/lens-cube/src/test/java/org/apache/lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java
index 398c45e..501a4b0 100644
--- a/lens-cube/src/test/java/org/apache/lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java
+++ b/lens-cube/src/test/java/org/apache/lens/cube/parse/FieldsCannotBeQueriedTogetherTest.java
@@ -258,7 +258,7 @@ public class FieldsCannotBeQueriedTogetherTest extends TestQueryRewrite {
     /* newmeasure is not present in any derived cube, hence the query should be disallowed. */
 
     testFieldsCannotBeQueriedTogetherError("select newmeasure from basecube where " + TWO_DAYS_RANGE,
-        Arrays.asList( "d_time", "newmeasure"));
+        Arrays.asList("d_time", "newmeasure"));
   }
 
   @Test
@@ -324,8 +324,8 @@ public class FieldsCannotBeQueriedTogetherTest extends TestQueryRewrite {
     Configuration queryConf = new Configuration(conf);
     queryConf.setBoolean(CubeQueryConfUtil.REPLACE_TIMEDIM_WITH_PART_COL, false);
 
-    testFieldsCannotBeQueriedTogetherError("select msr4 from basecube where " + "time_range_in(d_time, '" +
-        getDateUptoHours(TWODAYS_BACK) + "','" + getDateUptoHours(CubeTestSetup.NOW) + "')",
+    testFieldsCannotBeQueriedTogetherError("select msr4 from basecube where " + "time_range_in(d_time, '"
+        + getDateUptoHours(TWODAYS_BACK) + "','" + getDateUptoHours(CubeTestSetup.NOW) + "')",
         Arrays.asList("d_time", "msr4"), queryConf);
   }