Jenkins build is back to normal : Phoenix | 4.0 | Hadoop2 #136

2014-09-18 Thread Apache Jenkins Server
See https://builds.apache.org/job/Phoenix-4.0-hadoop2/136/



git commit: PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)

2014-09-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/3.0 f6f4fca0e - 7829f0e5a


PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)


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

Branch: refs/heads/3.0
Commit: 7829f0e5a12dcd2bd36eb0d9042a68167d940551
Parents: f6f4fca
Author: James Taylor jtay...@salesforce.com
Authored: Thu Sep 18 15:41:27 2014 -0700
Committer: James Taylor jtay...@salesforce.com
Committed: Thu Sep 18 15:41:27 2014 -0700

--
 .../end2end/ClientTimeArithmeticQueryIT.java|   2 +-
 .../phoenix/end2end/CoalesceFunctionIT.java | 273 ++-
 .../expression/function/CoalesceFunction.java   |  40 ++-
 3 files changed, 293 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/7829f0e5/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
index 9be6fc1..98b233c 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
@@ -537,7 +537,7 @@ public class ClientTimeArithmeticQueryIT extends 
BaseQueryIT {
 
 @Test
 public void testCoalesceFunction() throws Exception {
-String query = SELECT entity_id FROM aTable WHERE a_integer  0 and 
coalesce(X_DECIMAL,0.0) = 0.0;
+String query = SELECT entity_id FROM aTable WHERE 
coalesce(X_DECIMAL,0.0) = 0.0;
 Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 10)); // Execute at timestamp 2
 Connection conn = DriverManager.getConnection(getUrl(), props);

http://git-wip-us.apache.org/repos/asf/phoenix/blob/7829f0e5/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
index 48808ab..57599e6 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
@@ -19,6 +19,7 @@ package org.apache.phoenix.end2end;
 
 import static org.apache.phoenix.util.TestUtil.ROW6;
 import static org.apache.phoenix.util.TestUtil.ROW7;
+import static org.apache.phoenix.util.TestUtil.TEST_PROPERTIES;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
@@ -27,37 +28,285 @@ import java.sql.Connection;
 import java.sql.DriverManager;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
+import java.sql.SQLException;
 import java.util.Properties;
 
-import org.apache.phoenix.util.PhoenixRuntime;
+import org.apache.phoenix.schema.IllegalDataException;
+import org.apache.phoenix.util.PropertiesUtil;
+import org.junit.Assert;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-@Category(ClientManagedTimeTest.class)
-public class CoalesceFunctionIT extends BaseClientManagedTimeIT {
+@Category(HBaseManagedTimeTest.class)
+public class CoalesceFunctionIT extends BaseHBaseManagedTimeIT {
+
 @Test
 public void testCoalesce() throws Exception {
-long ts = nextTimestamp();
 String tenantId = getOrganizationId();
-initATableValues(tenantId, getDefaultSplits(tenantId), null, ts);
-Properties props = new Properties();
-props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 1)); // Execute at timestamp 1
+initATableValues(tenantId, getDefaultSplits(tenantId), getUrl());
+Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 Connection conn = DriverManager.getConnection(getUrl(), props);
 String query = SELECT entity_id, a_integer + COALESCE(x_integer,1) 
FROM ATABLE WHERE organization_id = ? AND a_integer = 6 AND a_integer = 7;
 PreparedStatement statement = conn.prepareStatement(query);
 statement.setString(1, tenantId);
 ResultSet rs = statement.executeQuery();
-
-assertTrue (rs.next());
+
+assertTrue(rs.next());
 assertEquals(ROW6, rs.getString(1));
 assertEquals(7, 

[1/2] git commit: Remove unused local variable

2014-09-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/4.0 e174793e9 - c84b5f925


Remove unused local variable


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

Branch: refs/heads/4.0
Commit: 1280ad439b04d1d9756035e13ef3119ac80827c7
Parents: e174793
Author: James Taylor jtay...@salesforce.com
Authored: Thu Sep 18 15:38:31 2014 -0700
Committer: James Taylor jtay...@salesforce.com
Committed: Thu Sep 18 15:43:43 2014 -0700

--
 .../expression/function/RegexpSplitFunction.java| 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/1280ad43/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
index 1a9e961..5dd70c4 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
@@ -17,8 +17,10 @@
  */
 package org.apache.phoenix.expression.function;
 
-import com.google.common.base.Splitter;
-import com.google.common.collect.Lists;
+import java.io.DataInput;
+import java.io.IOException;
+import java.util.List;
+
 import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
 import org.apache.phoenix.expression.Expression;
 import org.apache.phoenix.expression.LiteralExpression;
@@ -28,9 +30,8 @@ import org.apache.phoenix.schema.PhoenixArray;
 import org.apache.phoenix.schema.tuple.Tuple;
 import org.apache.phoenix.util.ByteUtil;
 
-import java.io.DataInput;
-import java.io.IOException;
-import java.util.List;
+import com.google.common.base.Splitter;
+import com.google.common.collect.Lists;
 
 /**
  * Function to split a string value into a {@code VARCHAR_ARRAY}.
@@ -50,7 +51,6 @@ public class RegexpSplitFunction extends ScalarFunction {
 
 public static final String NAME = REGEXP_SPLIT;
 
-private ImmutableBytesWritable patternPtr = new ImmutableBytesWritable();
 private Splitter initializedSplitter = null;
 
 public RegexpSplitFunction() {}



[2/2] git commit: PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)

2014-09-18 Thread jamestaylor
PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)


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

Branch: refs/heads/4.0
Commit: c84b5f9251160a4a28267b2e6cb3b3cf5ac93442
Parents: 1280ad4
Author: James Taylor jtay...@salesforce.com
Authored: Thu Sep 18 15:41:27 2014 -0700
Committer: James Taylor jtay...@salesforce.com
Committed: Thu Sep 18 15:44:09 2014 -0700

--
 .../end2end/ClientTimeArithmeticQueryIT.java|   2 +-
 .../phoenix/end2end/CoalesceFunctionIT.java | 273 ++-
 .../expression/function/CoalesceFunction.java   |  40 ++-
 3 files changed, 293 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/c84b5f92/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
index 9be6fc1..98b233c 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
@@ -537,7 +537,7 @@ public class ClientTimeArithmeticQueryIT extends 
BaseQueryIT {
 
 @Test
 public void testCoalesceFunction() throws Exception {
-String query = SELECT entity_id FROM aTable WHERE a_integer  0 and 
coalesce(X_DECIMAL,0.0) = 0.0;
+String query = SELECT entity_id FROM aTable WHERE 
coalesce(X_DECIMAL,0.0) = 0.0;
 Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 10)); // Execute at timestamp 2
 Connection conn = DriverManager.getConnection(getUrl(), props);

http://git-wip-us.apache.org/repos/asf/phoenix/blob/c84b5f92/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
index 48808ab..57599e6 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
@@ -19,6 +19,7 @@ package org.apache.phoenix.end2end;
 
 import static org.apache.phoenix.util.TestUtil.ROW6;
 import static org.apache.phoenix.util.TestUtil.ROW7;
+import static org.apache.phoenix.util.TestUtil.TEST_PROPERTIES;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
@@ -27,37 +28,285 @@ import java.sql.Connection;
 import java.sql.DriverManager;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
+import java.sql.SQLException;
 import java.util.Properties;
 
-import org.apache.phoenix.util.PhoenixRuntime;
+import org.apache.phoenix.schema.IllegalDataException;
+import org.apache.phoenix.util.PropertiesUtil;
+import org.junit.Assert;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-@Category(ClientManagedTimeTest.class)
-public class CoalesceFunctionIT extends BaseClientManagedTimeIT {
+@Category(HBaseManagedTimeTest.class)
+public class CoalesceFunctionIT extends BaseHBaseManagedTimeIT {
+
 @Test
 public void testCoalesce() throws Exception {
-long ts = nextTimestamp();
 String tenantId = getOrganizationId();
-initATableValues(tenantId, getDefaultSplits(tenantId), null, ts);
-Properties props = new Properties();
-props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 1)); // Execute at timestamp 1
+initATableValues(tenantId, getDefaultSplits(tenantId), getUrl());
+Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 Connection conn = DriverManager.getConnection(getUrl(), props);
 String query = SELECT entity_id, a_integer + COALESCE(x_integer,1) 
FROM ATABLE WHERE organization_id = ? AND a_integer = 6 AND a_integer = 7;
 PreparedStatement statement = conn.prepareStatement(query);
 statement.setString(1, tenantId);
 ResultSet rs = statement.executeQuery();
-
-assertTrue (rs.next());
+
+assertTrue(rs.next());
 assertEquals(ROW6, rs.getString(1));
 assertEquals(7, rs.getInt(2));
-
-assertTrue (rs.next());
+
+

[2/2] git commit: PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)

2014-09-18 Thread jamestaylor
PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)


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

Branch: refs/heads/master
Commit: 797af91a6b77e3cbea51ec94ba5a01762efa293c
Parents: bba2eee
Author: James Taylor jtay...@salesforce.com
Authored: Thu Sep 18 15:41:27 2014 -0700
Committer: James Taylor jtay...@salesforce.com
Committed: Thu Sep 18 15:46:29 2014 -0700

--
 .../end2end/ClientTimeArithmeticQueryIT.java|   2 +-
 .../phoenix/end2end/CoalesceFunctionIT.java | 273 ++-
 .../expression/function/CoalesceFunction.java   |  40 ++-
 3 files changed, 293 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/797af91a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
index 9be6fc1..98b233c 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ClientTimeArithmeticQueryIT.java
@@ -537,7 +537,7 @@ public class ClientTimeArithmeticQueryIT extends 
BaseQueryIT {
 
 @Test
 public void testCoalesceFunction() throws Exception {
-String query = SELECT entity_id FROM aTable WHERE a_integer  0 and 
coalesce(X_DECIMAL,0.0) = 0.0;
+String query = SELECT entity_id FROM aTable WHERE 
coalesce(X_DECIMAL,0.0) = 0.0;
 Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 10)); // Execute at timestamp 2
 Connection conn = DriverManager.getConnection(getUrl(), props);

http://git-wip-us.apache.org/repos/asf/phoenix/blob/797af91a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
index 48808ab..57599e6 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CoalesceFunctionIT.java
@@ -19,6 +19,7 @@ package org.apache.phoenix.end2end;
 
 import static org.apache.phoenix.util.TestUtil.ROW6;
 import static org.apache.phoenix.util.TestUtil.ROW7;
+import static org.apache.phoenix.util.TestUtil.TEST_PROPERTIES;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
@@ -27,37 +28,285 @@ import java.sql.Connection;
 import java.sql.DriverManager;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
+import java.sql.SQLException;
 import java.util.Properties;
 
-import org.apache.phoenix.util.PhoenixRuntime;
+import org.apache.phoenix.schema.IllegalDataException;
+import org.apache.phoenix.util.PropertiesUtil;
+import org.junit.Assert;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-@Category(ClientManagedTimeTest.class)
-public class CoalesceFunctionIT extends BaseClientManagedTimeIT {
+@Category(HBaseManagedTimeTest.class)
+public class CoalesceFunctionIT extends BaseHBaseManagedTimeIT {
+
 @Test
 public void testCoalesce() throws Exception {
-long ts = nextTimestamp();
 String tenantId = getOrganizationId();
-initATableValues(tenantId, getDefaultSplits(tenantId), null, ts);
-Properties props = new Properties();
-props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts 
+ 1)); // Execute at timestamp 1
+initATableValues(tenantId, getDefaultSplits(tenantId), getUrl());
+Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
 Connection conn = DriverManager.getConnection(getUrl(), props);
 String query = SELECT entity_id, a_integer + COALESCE(x_integer,1) 
FROM ATABLE WHERE organization_id = ? AND a_integer = 6 AND a_integer = 7;
 PreparedStatement statement = conn.prepareStatement(query);
 statement.setString(1, tenantId);
 ResultSet rs = statement.executeQuery();
-
-assertTrue (rs.next());
+
+assertTrue(rs.next());
 assertEquals(ROW6, rs.getString(1));
 assertEquals(7, rs.getInt(2));
-
-assertTrue (rs.next());
+
+

[1/2] git commit: Remove unused local variable

2014-09-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/master 486e28b58 - 797af91a6


Remove unused local variable


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

Branch: refs/heads/master
Commit: bba2eeecf76c8b30cab0272273bd89a0de30e0e0
Parents: 486e28b
Author: James Taylor jtay...@salesforce.com
Authored: Thu Sep 18 15:38:31 2014 -0700
Committer: James Taylor jtay...@salesforce.com
Committed: Thu Sep 18 15:46:25 2014 -0700

--
 .../expression/function/RegexpSplitFunction.java| 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/bba2eeec/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
index 1a9e961..5dd70c4 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/expression/function/RegexpSplitFunction.java
@@ -17,8 +17,10 @@
  */
 package org.apache.phoenix.expression.function;
 
-import com.google.common.base.Splitter;
-import com.google.common.collect.Lists;
+import java.io.DataInput;
+import java.io.IOException;
+import java.util.List;
+
 import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
 import org.apache.phoenix.expression.Expression;
 import org.apache.phoenix.expression.LiteralExpression;
@@ -28,9 +30,8 @@ import org.apache.phoenix.schema.PhoenixArray;
 import org.apache.phoenix.schema.tuple.Tuple;
 import org.apache.phoenix.util.ByteUtil;
 
-import java.io.DataInput;
-import java.io.IOException;
-import java.util.List;
+import com.google.common.base.Splitter;
+import com.google.common.collect.Lists;
 
 /**
  * Function to split a string value into a {@code VARCHAR_ARRAY}.
@@ -50,7 +51,6 @@ public class RegexpSplitFunction extends ScalarFunction {
 
 public static final String NAME = REGEXP_SPLIT;
 
-private ImmutableBytesWritable patternPtr = new ImmutableBytesWritable();
 private Splitter initializedSplitter = null;
 
 public RegexpSplitFunction() {}



Build failed in Jenkins: Phoenix | Master | Hadoop1 #367

2014-09-18 Thread Apache Jenkins Server
See https://builds.apache.org/job/Phoenix-master-hadoop1/367/changes

Changes:

[jtaylor] Remove unused local variable

[jtaylor] PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav 
Loffelmann)

--
[...truncated 23058 lines...]
at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at 
org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:33)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runners.Suite.runChild(Suite.java:127)
at org.junit.runners.Suite.runChild(Suite.java:26)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at org.junit.runner.JUnitCore.run(JUnitCore.java:138)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:113)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeLazy(JUnitCoreWrapper.java:94)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:58)
at 
org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134)
at 
org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200)
at 
org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
at 
org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103)

Tests run: 2, Failures: 1, Errors: 1, Skipped: 0, Time elapsed: -1,963,759.595 
sec  FAILURE! - in org.apache.phoenix.end2end.ReadIsolationLevelIT
org.apache.phoenix.end2end.ReadIsolationLevelIT  Time elapsed: -1,963,759.595 
sec   ERROR!
java.lang.RuntimeException: java.lang.NullPointerException
at org.apache.phoenix.query.BaseTest.initMiniCluster(BaseTest.java:488)
at org.apache.phoenix.query.BaseTest.setUpTestCluster(BaseTest.java:449)
at 
org.apache.phoenix.end2end.BaseClientManagedTimeIT.checkClusterInitialized(BaseClientManagedTimeIT.java:89)
at 
org.apache.phoenix.end2end.BaseClientManagedTimeIT.getUrl(BaseClientManagedTimeIT.java:59)
at 
org.apache.phoenix.end2end.BaseClientManagedTimeIT.doSetup(BaseClientManagedTimeIT.java:75)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at 
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at 
org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
at 
org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runners.Suite.runChild(Suite.java:127)
at org.junit.runners.Suite.runChild(Suite.java:26)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at org.junit.runner.JUnitCore.run(JUnitCore.java:138)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:113)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeLazy(JUnitCoreWrapper.java:94)
at 
org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:58)
at 
org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134)
at 
org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200)
at 
org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
at 
org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103)
Caused by: 

Apache-Phoenix | 3.0 | Hadoop1 | Build Successful

2014-09-18 Thread Apache Jenkins Server
3.0 branch build status Successful
Source repository https://git-wip-us.apache.org/repos/asf/phoenix.git

Last Successful Compiled Artifacts https://builds.apache.org/job/Phoenix-3.0-hadoop1/lastSuccessfulBuild/artifact/

Last Complete Test Report https://builds.apache.org/job/Phoenix-3.0-hadoop1/lastCompletedBuild/testReport/

Changes
[jtaylor] Remove unused local variable

[jtaylor] PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)



Apache-Phoenix | 4.0 | Hadoop1 | Build Successful

2014-09-18 Thread Apache Jenkins Server
4.0 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.0-hadoop1/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.0-hadoop1/lastCompletedBuild/testReport/

Changes
[jtaylor] Remove unused local variable

[jtaylor] PHOENIX-1237 COALESCE Function - type of second parameter (Vaclav Loffelmann)



Jenkins build is back to normal : Phoenix | Master | Hadoop1 #368

2014-09-18 Thread Apache Jenkins Server
See https://builds.apache.org/job/Phoenix-master-hadoop1/368/changes