You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by mu...@apache.org on 2014/02/08 05:37:31 UTC

git commit: Test is fixed in master. Disabled in 2.2.3 as fails on build machine when time is not in GMT.

Updated Branches:
  refs/heads/2.2.3 e2cf3dc6c -> f5806942b


Test is fixed in master. Disabled in 2.2.3 as fails on build machine when time is not in GMT.


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

Branch: refs/heads/2.2.3
Commit: f5806942b923c36e524ada49a9b84378d077a8a6
Parents: e2cf3dc
Author: Mujtaba <mu...@apache.org>
Authored: Fri Feb 7 20:37:01 2014 -0800
Committer: Mujtaba <mu...@apache.org>
Committed: Fri Feb 7 20:37:01 2014 -0800

----------------------------------------------------------------------
 .../org/apache/phoenix/compile/StatementHintsCompilationTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-phoenix/blob/f5806942/src/test/java/org/apache/phoenix/compile/StatementHintsCompilationTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/phoenix/compile/StatementHintsCompilationTest.java b/src/test/java/org/apache/phoenix/compile/StatementHintsCompilationTest.java
index 100e7b3..99141ed 100644
--- a/src/test/java/org/apache/phoenix/compile/StatementHintsCompilationTest.java
+++ b/src/test/java/org/apache/phoenix/compile/StatementHintsCompilationTest.java
@@ -110,7 +110,7 @@ public class StatementHintsCompilationTest extends BaseConnectionlessQueryTest {
         assertFalse("The first filter should not be SkipScanFilter.", usingSkipScan(scan));
     }
     
-    @Test
+    @Ignore @Test
     public void testSelectForceRangeScanForEH() throws Exception {
         Connection conn = DriverManager.getConnection(getUrl());
         conn.createStatement().execute("create table eh (organization_id char(15) not null,parent_id char(15) not null, created_date date not null, entity_history_id char(15) not null constraint pk primary key (organization_id, parent_id, created_date, entity_history_id))");