phoenix git commit: PHOENIX-2580 Set incremental to false for Sqlline

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 cc5f31f8d -> dea23c0b4


PHOENIX-2580 Set incremental to false for Sqlline


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

Branch: refs/heads/4.x-HBase-1.0
Commit: dea23c0b49df2b92e93bafb5809a7d921226f4c3
Parents: cc5f31f
Author: Mujtaba 
Authored: Mon Jan 11 16:07:13 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:07:13 2016 -0800

--
 bin/sqlline.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/dea23c0b/bin/sqlline.py
--
diff --git a/bin/sqlline.py b/bin/sqlline.py
index d3901ce..d1fdf74 100755
--- a/bin/sqlline.py
+++ b/bin/sqlline.py
@@ -93,7 +93,7 @@ java_cmd = java + ' -cp "' + phoenix_utils.hbase_conf_dir + 
os.pathsep + phoenix
 " sqlline.SqlLine -d org.apache.phoenix.jdbc.PhoenixDriver \
 -u jdbc:phoenix:" + phoenix_utils.shell_quote([sys.argv[1]]) + \
 " -n none -p none --color=" + colorSetting + " --fastConnect=false 
--verbose=true \
---isolation=TRANSACTION_READ_COMMITTED " + sqlfile
+--incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile
 
 childProc = subprocess.Popen(java_cmd, shell=True)
 #Wait for child process exit



phoenix git commit: Shutdown thread pool as it might be preventing JVM from shutting down

2016-01-11 Thread samarth
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 ed903d1bf -> 808d59622


Shutdown thread pool as it might be preventing JVM from shutting down


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 808d596b969d4821198481798a8773cc54f9
Parents: ed903d1
Author: Samarth 
Authored: Mon Jan 11 15:45:28 2016 -0800
Committer: Samarth 
Committed: Mon Jan 11 15:45:28 2016 -0800

--
 .../org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java   | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/808d5962/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
index 7350520..f9b258b 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
@@ -97,6 +97,7 @@ public abstract class DropIndexDuringUpsertIT extends 
BaseTest {
 @After
 public void tearDown() throws Exception {
 try {
+service.shutdown();
 destroyDriver(driver);
 } finally {
 util.shutdownMiniCluster();



phoenix git commit: PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't exist (elserj)

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/master 87ce8b104 -> 938bf9fcc


PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't 
exist (elserj)


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

Branch: refs/heads/master
Commit: 938bf9fcc9660cac16ac355340a00de94e1caae2
Parents: 87ce8b1
Author: Mujtaba 
Authored: Mon Jan 11 16:31:13 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:31:13 2016 -0800

--
 .../apache/phoenix/pherf/util/ResourceList.java |  7 +++-
 .../phoenix/pherf/util/ResourceListTest.java| 38 
 2 files changed, 44 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/938bf9fc/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
--
diff --git 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
index 037426e..0b54641 100644
--- 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
+++ 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
@@ -24,6 +24,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 import java.io.File;
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.net.URI;
 import java.net.URL;
@@ -121,13 +122,17 @@ public class ResourceList {
 return retVal;
 }
 
-private Collection getResourcesFromJarFile(
+// Visible for testing
+Collection getResourcesFromJarFile(
 final File file,
 final Pattern pattern) {
 final List retVal = new ArrayList<>();
 ZipFile zf;
 try {
 zf = new ZipFile(file);
+} catch (FileNotFoundException e) {
+// Gracefully handle a jar listed on the classpath that doesn't 
actually exist.
+return Collections.emptyList();
 } catch (final ZipException e) {
 throw new Error(e);
 } catch (final IOException e) {

http://git-wip-us.apache.org/repos/asf/phoenix/blob/938bf9fc/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
--
diff --git 
a/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
new file mode 100644
index 000..c77cb82
--- /dev/null
+++ 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to you under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.phoenix.pherf.util;
+
+import java.io.File;
+import java.util.Collections;
+import java.util.regex.Pattern;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+public class ResourceListTest {
+
+  @Test
+  public void testMissingJarFileReturnsGracefully() {
+ResourceList rl = new ResourceList("foo");
+File missingFile = new File("abracadabraphoenix.txt");
+assertFalse("Did not expect a fake test file to actually exist", 
missingFile.exists());
+assertEquals(Collections.emptyList(), 
rl.getResourcesFromJarFile(missingFile, Pattern.compile("pattern")));
+  }
+
+}



phoenix git commit: PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't exist (elserj)

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 dea23c0b4 -> af23e6711


PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't 
exist (elserj)


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

Branch: refs/heads/4.x-HBase-1.0
Commit: af23e67118cc4fc8b979a36544c9c406dc0ae243
Parents: dea23c0
Author: Mujtaba 
Authored: Mon Jan 11 16:29:59 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:29:59 2016 -0800

--
 .../apache/phoenix/pherf/util/ResourceList.java |  7 +++-
 .../phoenix/pherf/util/ResourceListTest.java| 38 
 2 files changed, 44 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/af23e671/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
--
diff --git 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
index 037426e..0b54641 100644
--- 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
+++ 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
@@ -24,6 +24,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 import java.io.File;
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.net.URI;
 import java.net.URL;
@@ -121,13 +122,17 @@ public class ResourceList {
 return retVal;
 }
 
-private Collection getResourcesFromJarFile(
+// Visible for testing
+Collection getResourcesFromJarFile(
 final File file,
 final Pattern pattern) {
 final List retVal = new ArrayList<>();
 ZipFile zf;
 try {
 zf = new ZipFile(file);
+} catch (FileNotFoundException e) {
+// Gracefully handle a jar listed on the classpath that doesn't 
actually exist.
+return Collections.emptyList();
 } catch (final ZipException e) {
 throw new Error(e);
 } catch (final IOException e) {

http://git-wip-us.apache.org/repos/asf/phoenix/blob/af23e671/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
--
diff --git 
a/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
new file mode 100644
index 000..c77cb82
--- /dev/null
+++ 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to you under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.phoenix.pherf.util;
+
+import java.io.File;
+import java.util.Collections;
+import java.util.regex.Pattern;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+public class ResourceListTest {
+
+  @Test
+  public void testMissingJarFileReturnsGracefully() {
+ResourceList rl = new ResourceList("foo");
+File missingFile = new File("abracadabraphoenix.txt");
+assertFalse("Did not expect a fake test file to actually exist", 
missingFile.exists());
+assertEquals(Collections.emptyList(), 
rl.getResourcesFromJarFile(missingFile, Pattern.compile("pattern")));
+  }
+
+}



phoenix git commit: Shutdown thread pool as it might be preventing JVM from shutting down

2016-01-11 Thread samarth
Repository: phoenix
Updated Branches:
  refs/heads/master 42736973b -> b8264a3c9


Shutdown thread pool as it might be preventing JVM from shutting down


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

Branch: refs/heads/master
Commit: b8264a3c997adfa4799f579c301b47bef30c7a3a
Parents: 4273697
Author: Samarth 
Authored: Mon Jan 11 15:43:44 2016 -0800
Committer: Samarth 
Committed: Mon Jan 11 15:43:44 2016 -0800

--
 .../org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java   | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/b8264a3c/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
index 7350520..df28e65 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/DropIndexDuringUpsertIT.java
@@ -97,6 +97,7 @@ public abstract class DropIndexDuringUpsertIT extends 
BaseTest {
 @After
 public void tearDown() throws Exception {
 try {
+service.shutdownNow();
 destroyDriver(driver);
 } finally {
 util.shutdownMiniCluster();



phoenix git commit: PHOENIX-2580 Set incremental to false for Sqlline

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 808d59622 -> 4ed530dc0


PHOENIX-2580 Set incremental to false for Sqlline


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 4ed530dc049cf886efb62a0573ffc7ae936b021a
Parents: 808d596
Author: Mujtaba 
Authored: Mon Jan 11 16:05:13 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:05:13 2016 -0800

--
 bin/sqlline.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/4ed530dc/bin/sqlline.py
--
diff --git a/bin/sqlline.py b/bin/sqlline.py
index d3901ce..d1fdf74 100755
--- a/bin/sqlline.py
+++ b/bin/sqlline.py
@@ -93,7 +93,7 @@ java_cmd = java + ' -cp "' + phoenix_utils.hbase_conf_dir + 
os.pathsep + phoenix
 " sqlline.SqlLine -d org.apache.phoenix.jdbc.PhoenixDriver \
 -u jdbc:phoenix:" + phoenix_utils.shell_quote([sys.argv[1]]) + \
 " -n none -p none --color=" + colorSetting + " --fastConnect=false 
--verbose=true \
---isolation=TRANSACTION_READ_COMMITTED " + sqlfile
+--incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile
 
 childProc = subprocess.Popen(java_cmd, shell=True)
 #Wait for child process exit



phoenix git commit: PHOENIX-2580 Set incremental to false for Sqlline

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/master b8264a3c9 -> 87ce8b104


PHOENIX-2580 Set incremental to false for Sqlline


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

Branch: refs/heads/master
Commit: 87ce8b10429d312ae0b4d3aee995369c46c90f8d
Parents: b8264a3
Author: Mujtaba 
Authored: Mon Jan 11 16:06:30 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:06:30 2016 -0800

--
 bin/sqlline.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/87ce8b10/bin/sqlline.py
--
diff --git a/bin/sqlline.py b/bin/sqlline.py
index d3901ce..d1fdf74 100755
--- a/bin/sqlline.py
+++ b/bin/sqlline.py
@@ -93,7 +93,7 @@ java_cmd = java + ' -cp "' + phoenix_utils.hbase_conf_dir + 
os.pathsep + phoenix
 " sqlline.SqlLine -d org.apache.phoenix.jdbc.PhoenixDriver \
 -u jdbc:phoenix:" + phoenix_utils.shell_quote([sys.argv[1]]) + \
 " -n none -p none --color=" + colorSetting + " --fastConnect=false 
--verbose=true \
---isolation=TRANSACTION_READ_COMMITTED " + sqlfile
+--incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile
 
 childProc = subprocess.Popen(java_cmd, shell=True)
 #Wait for child process exit



Apache-Phoenix | Master | Build Successful

2016-01-11 Thread Apache Jenkins Server
Master branch build status Successful
Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/master

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

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

Changes
[samarth] Shutdown thread pool as it might be preventing JVM from shutting down



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


phoenix git commit: PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't exist (elserj)

2016-01-11 Thread mujtaba
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 4ed530dc0 -> 073ed20c1


PHOENIX-2563 Pherf's ResourceList should fail gracefully if a Jar file doesn't 
exist (elserj)


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 073ed20c15093a78fe210dfc0b86920a3270d26e
Parents: 4ed530d
Author: Mujtaba 
Authored: Mon Jan 11 16:31:53 2016 -0800
Committer: Mujtaba 
Committed: Mon Jan 11 16:31:53 2016 -0800

--
 .../apache/phoenix/pherf/util/ResourceList.java |  7 +++-
 .../phoenix/pherf/util/ResourceListTest.java| 38 
 2 files changed, 44 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/073ed20c/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
--
diff --git 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
index 037426e..0b54641 100644
--- 
a/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
+++ 
b/phoenix-pherf/src/main/java/org/apache/phoenix/pherf/util/ResourceList.java
@@ -24,6 +24,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 import java.io.File;
+import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.net.URI;
 import java.net.URL;
@@ -121,13 +122,17 @@ public class ResourceList {
 return retVal;
 }
 
-private Collection getResourcesFromJarFile(
+// Visible for testing
+Collection getResourcesFromJarFile(
 final File file,
 final Pattern pattern) {
 final List retVal = new ArrayList<>();
 ZipFile zf;
 try {
 zf = new ZipFile(file);
+} catch (FileNotFoundException e) {
+// Gracefully handle a jar listed on the classpath that doesn't 
actually exist.
+return Collections.emptyList();
 } catch (final ZipException e) {
 throw new Error(e);
 } catch (final IOException e) {

http://git-wip-us.apache.org/repos/asf/phoenix/blob/073ed20c/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
--
diff --git 
a/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
new file mode 100644
index 000..c77cb82
--- /dev/null
+++ 
b/phoenix-pherf/src/test/java/org/apache/phoenix/pherf/util/ResourceListTest.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to you under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.phoenix.pherf.util;
+
+import java.io.File;
+import java.util.Collections;
+import java.util.regex.Pattern;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+public class ResourceListTest {
+
+  @Test
+  public void testMissingJarFileReturnsGracefully() {
+ResourceList rl = new ResourceList("foo");
+File missingFile = new File("abracadabraphoenix.txt");
+assertFalse("Did not expect a fake test file to actually exist", 
missingFile.exists());
+assertEquals(Collections.emptyList(), 
rl.getResourcesFromJarFile(missingFile, Pattern.compile("pattern")));
+  }
+
+}



Build failed in Jenkins: Phoenix | 4.x-HBase-0.98 #988

2016-01-11 Thread Apache Jenkins Server
See 

Changes:

[ramkrishna] PHOENIX-2368 Call Driver.accept() in Driver.getConnection and 
return

--
[...truncated 243 lines...]
Running org.apache.phoenix.expression.util.regex.PatternPerformanceTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in 
org.apache.phoenix.expression.util.regex.PatternPerformanceTest
Running org.apache.phoenix.expression.function.InstrFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec - in 
org.apache.phoenix.expression.function.InstrFunctionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 sec - in 
org.apache.phoenix.expression.NullValueTest
Running org.apache.phoenix.expression.function.ExternalSqlTypeIdFunctionTest
Running org.apache.phoenix.expression.RegexpSubstrFunctionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec - in 
org.apache.phoenix.expression.function.ExternalSqlTypeIdFunctionTest
Running org.apache.phoenix.expression.SignFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec - in 
org.apache.phoenix.expression.SignFunctionTest
Running org.apache.phoenix.expression.SqrtFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec - in 
org.apache.phoenix.expression.SqrtFunctionTest
Running org.apache.phoenix.expression.SortOrderExpressionTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.886 sec - in 
org.apache.phoenix.util.PhoenixRuntimeTest
Running org.apache.phoenix.expression.ArrayFillFunctionTest
Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec - in 
org.apache.phoenix.expression.ArrayFillFunctionTest
Running org.apache.phoenix.expression.ArrayPrependFunctionTest
Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.049 sec - in 
org.apache.phoenix.expression.SortOrderExpressionTest
Running org.apache.phoenix.expression.RoundFloorCeilExpressionsTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.11 sec - in 
org.apache.phoenix.expression.RegexpSubstrFunctionTest
Running org.apache.phoenix.expression.PowerFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec - in 
org.apache.phoenix.expression.PowerFunctionTest
Running org.apache.phoenix.expression.GetSetByteBitFunctionTest
Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.475 sec - in 
org.apache.phoenix.expression.RoundFloorCeilExpressionsTest
Running org.apache.phoenix.expression.ColumnExpressionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in 
org.apache.phoenix.expression.ColumnExpressionTest
Running org.apache.phoenix.expression.RegexpSplitFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.RegexpSplitFunctionTest
Running org.apache.phoenix.expression.LnLogFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec - in 
org.apache.phoenix.expression.LnLogFunctionTest
Running org.apache.phoenix.expression.AbsFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.AbsFunctionTest
Running org.apache.phoenix.expression.LikeExpressionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.LikeExpressionTest
Running org.apache.phoenix.expression.ExpFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec - in 
org.apache.phoenix.expression.ExpFunctionTest
Running org.apache.phoenix.expression.ILikeExpressionTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.512 sec - in 
org.apache.phoenix.expression.GetSetByteBitFunctionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.ILikeExpressionTest
Running org.apache.phoenix.expression.ArrayAppendFunctionTest
Running org.apache.phoenix.expression.CbrtFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec - in 
org.apache.phoenix.expression.CbrtFunctionTest
Running org.apache.phoenix.expression.ArrayConcatFunctionTest
Tests run: 37, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.615 sec - in 
org.apache.phoenix.expression.ArrayPrependFunctionTest
Running org.apache.phoenix.expression.StringToArrayFunctionTest
Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec - in 
org.apache.phoenix.expression.StringToArrayFunctionTest
Running org.apache.phoenix.filter.SkipScanFilterTest
Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064 sec - in 
org.apache.phoenix.filter.SkipScanFilterTest
Running org.apache.phoenix.filter.SkipScanBigFilterTest
Tests run: 25, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.196 sec - in 

phoenix git commit: PHOENIX-2368 Call Driver.accept() in Driver.getConnection and return null if false (Ram)

2016-01-11 Thread ramkrishna
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 073ed20c1 -> cc134fe15


PHOENIX-2368 Call Driver.accept() in Driver.getConnection and return null
if false (Ram)


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

Branch: refs/heads/4.x-HBase-0.98
Commit: cc134fe151891e88338590baa98030ff5e44bfac
Parents: 073ed20
Author: ramkrishna 
Authored: Tue Jan 12 08:16:32 2016 +0530
Committer: ramkrishna 
Committed: Tue Jan 12 08:18:47 2016 +0530

--
 .../java/org/apache/phoenix/jdbc/PhoenixDriver.java   |  5 -
 .../apache/phoenix/jdbc/PhoenixEmbeddedDriver.java| 14 +-
 .../org/apache/phoenix/jdbc/PhoenixDriverTest.java| 12 
 3 files changed, 25 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/cc134fe1/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
index 0f5d4aa..9dafbbf 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
@@ -183,10 +183,13 @@ public final class PhoenixDriver extends 
PhoenixEmbeddedDriver {
 
 @Override
 public Connection connect(String url, Properties info) throws SQLException 
{
+if (!acceptsURL(url)) {
+  return null;
+}
 try {
 closeLock.readLock().lock();
 checkClosed();
-return super.connect(url, info);
+return createConnection(url, info);
 } finally {
 closeLock.readLock().unlock();
 }

http://git-wip-us.apache.org/repos/asf/phoenix/blob/cc134fe1/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
index c49bf37..486a6d7 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
@@ -126,11 +126,15 @@ public abstract class PhoenixEmbeddedDriver implements 
Driver, SQLCloseable {
 return null;
 }
 
-Properties augmentedInfo = PropertiesUtil.deepCopy(info);
-augmentedInfo.putAll(getDefaultProps().asMap());
-ConnectionQueryServices connectionServices = 
getConnectionQueryServices(url, augmentedInfo);
-PhoenixConnection connection = connectionServices.connect(url, 
augmentedInfo);
-return connection;
+return createConnection(url, info);
+}
+
+protected final Connection createConnection(String url, Properties info) 
throws SQLException {
+  Properties augmentedInfo = PropertiesUtil.deepCopy(info);
+  augmentedInfo.putAll(getDefaultProps().asMap());
+  ConnectionQueryServices connectionServices = 
getConnectionQueryServices(url, augmentedInfo);
+  PhoenixConnection connection = connectionServices.connect(url, 
augmentedInfo);
+  return connection;
 }
 
 /**

http://git-wip-us.apache.org/repos/asf/phoenix/blob/cc134fe1/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
--
diff --git 
a/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java 
b/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
index b70ea71..02af191 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
+++ b/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
@@ -114,4 +114,16 @@ public class PhoenixDriverTest extends 
BaseConnectionlessQueryTest {
 conn.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ);
 conn.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE);
 }
+
+@Test
+public void testInvalidURL() throws Exception {
+  Class.forName(PhoenixDriver.class.getName());
+  PhoenixDriver d = (PhoenixDriver) 
DriverManager.getDriver("jdbc:phoenix");
+  d.close();
+  try {
+  DriverManager.getConnection("any text whatever you want to put here");
+  fail("Should have failed due to invalid driver");
+  } catch(Exception e) 

phoenix git commit: PHOENIX-2368 Call Driver.accept() in Driver.getConnection and return null if false (Ram)

2016-01-11 Thread ramkrishna
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 af23e6711 -> 7fc2b2f33


PHOENIX-2368 Call Driver.accept() in Driver.getConnection and return null
if false (Ram)


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

Branch: refs/heads/4.x-HBase-1.0
Commit: 7fc2b2f33ed11666341937043b5011b8bce514fc
Parents: af23e67
Author: ramkrishna 
Authored: Tue Jan 12 08:16:32 2016 +0530
Committer: ramkrishna 
Committed: Tue Jan 12 08:18:03 2016 +0530

--
 .../java/org/apache/phoenix/jdbc/PhoenixDriver.java   |  5 -
 .../apache/phoenix/jdbc/PhoenixEmbeddedDriver.java| 14 +-
 .../org/apache/phoenix/jdbc/PhoenixDriverTest.java| 12 
 3 files changed, 25 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/7fc2b2f3/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
index 0f5d4aa..9dafbbf 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDriver.java
@@ -183,10 +183,13 @@ public final class PhoenixDriver extends 
PhoenixEmbeddedDriver {
 
 @Override
 public Connection connect(String url, Properties info) throws SQLException 
{
+if (!acceptsURL(url)) {
+  return null;
+}
 try {
 closeLock.readLock().lock();
 checkClosed();
-return super.connect(url, info);
+return createConnection(url, info);
 } finally {
 closeLock.readLock().unlock();
 }

http://git-wip-us.apache.org/repos/asf/phoenix/blob/7fc2b2f3/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
index c49bf37..486a6d7 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixEmbeddedDriver.java
@@ -126,11 +126,15 @@ public abstract class PhoenixEmbeddedDriver implements 
Driver, SQLCloseable {
 return null;
 }
 
-Properties augmentedInfo = PropertiesUtil.deepCopy(info);
-augmentedInfo.putAll(getDefaultProps().asMap());
-ConnectionQueryServices connectionServices = 
getConnectionQueryServices(url, augmentedInfo);
-PhoenixConnection connection = connectionServices.connect(url, 
augmentedInfo);
-return connection;
+return createConnection(url, info);
+}
+
+protected final Connection createConnection(String url, Properties info) 
throws SQLException {
+  Properties augmentedInfo = PropertiesUtil.deepCopy(info);
+  augmentedInfo.putAll(getDefaultProps().asMap());
+  ConnectionQueryServices connectionServices = 
getConnectionQueryServices(url, augmentedInfo);
+  PhoenixConnection connection = connectionServices.connect(url, 
augmentedInfo);
+  return connection;
 }
 
 /**

http://git-wip-us.apache.org/repos/asf/phoenix/blob/7fc2b2f3/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
--
diff --git 
a/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java 
b/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
index b70ea71..02af191 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
+++ b/phoenix-core/src/test/java/org/apache/phoenix/jdbc/PhoenixDriverTest.java
@@ -114,4 +114,16 @@ public class PhoenixDriverTest extends 
BaseConnectionlessQueryTest {
 conn.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ);
 conn.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE);
 }
+
+@Test
+public void testInvalidURL() throws Exception {
+  Class.forName(PhoenixDriver.class.getName());
+  PhoenixDriver d = (PhoenixDriver) 
DriverManager.getDriver("jdbc:phoenix");
+  d.close();
+  try {
+  DriverManager.getConnection("any text whatever you want to put here");
+  fail("Should have failed due to invalid driver");
+  } catch(Exception e) {

Apache-Phoenix | Master | Build Successful

2016-01-11 Thread Apache Jenkins Server
Master branch build status Successful
Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/master

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

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

Changes
[ramkrishna] PHOENIX-2368 Call Driver.accept() in Driver.getConnection and return



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Build failed in Jenkins: Phoenix-4.x-HBase-1.0 #309

2016-01-11 Thread Apache Jenkins Server
See 

Changes:

[ramkrishna] PHOENIX-2368 Call Driver.accept() in Driver.getConnection and 
return

--
[...truncated 242 lines...]
Running org.apache.phoenix.expression.NullValueTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148 sec - in 
org.apache.phoenix.expression.RegexpReplaceFunctionTest
Running org.apache.phoenix.expression.CoerceExpressionTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec - in 
org.apache.phoenix.expression.CoerceExpressionTest
Running org.apache.phoenix.expression.OctetLengthFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec - in 
org.apache.phoenix.expression.OctetLengthFunctionTest
Running org.apache.phoenix.expression.ArrayToStringFunctionTest
Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec - in 
org.apache.phoenix.expression.ArrayToStringFunctionTest
Running org.apache.phoenix.expression.util.regex.PatternPerformanceTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.phoenix.expression.util.regex.PatternPerformanceTest
Running org.apache.phoenix.expression.function.InstrFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec - in 
org.apache.phoenix.expression.function.InstrFunctionTest
Running org.apache.phoenix.expression.function.ExternalSqlTypeIdFunctionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in 
org.apache.phoenix.expression.function.ExternalSqlTypeIdFunctionTest
Running org.apache.phoenix.expression.RegexpSubstrFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec - in 
org.apache.phoenix.expression.RegexpSubstrFunctionTest
Running org.apache.phoenix.expression.SignFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec - in 
org.apache.phoenix.expression.SignFunctionTest
Running org.apache.phoenix.expression.SqrtFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.SqrtFunctionTest
Running org.apache.phoenix.expression.SortOrderExpressionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.292 sec - in 
org.apache.phoenix.expression.NullValueTest
Running org.apache.phoenix.expression.ArrayFillFunctionTest
Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec - in 
org.apache.phoenix.expression.ArrayFillFunctionTest
Running org.apache.phoenix.expression.ArrayPrependFunctionTest
Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.049 sec - in 
org.apache.phoenix.expression.SortOrderExpressionTest
Running org.apache.phoenix.expression.RoundFloorCeilExpressionsTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.902 sec - in 
org.apache.phoenix.util.PhoenixRuntimeTest
Running org.apache.phoenix.expression.PowerFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 sec - in 
org.apache.phoenix.expression.PowerFunctionTest
Running org.apache.phoenix.expression.GetSetByteBitFunctionTest
Tests run: 37, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.362 sec - in 
org.apache.phoenix.expression.ArrayPrependFunctionTest
Running org.apache.phoenix.expression.ColumnExpressionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec - in 
org.apache.phoenix.expression.ColumnExpressionTest
Running org.apache.phoenix.expression.RegexpSplitFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.121 sec - in 
org.apache.phoenix.expression.RegexpSplitFunctionTest
Running org.apache.phoenix.expression.LnLogFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 sec - in 
org.apache.phoenix.expression.LnLogFunctionTest
Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.483 sec - in 
org.apache.phoenix.expression.RoundFloorCeilExpressionsTest
Running org.apache.phoenix.expression.AbsFunctionTest
Running org.apache.phoenix.expression.LikeExpressionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in 
org.apache.phoenix.expression.LikeExpressionTest
Running org.apache.phoenix.expression.ExpFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec - in 
org.apache.phoenix.expression.AbsFunctionTest
Running org.apache.phoenix.expression.ILikeExpressionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec - in 
org.apache.phoenix.expression.ExpFunctionTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec - in 
org.apache.phoenix.expression.ILikeExpressionTest
Running org.apache.phoenix.expression.CbrtFunctionTest
Running org.apache.phoenix.expression.ArrayAppendFunctionTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 

Apache-Phoenix | 4.x-HBase-1.0 | Build Successful

2016-01-11 Thread Apache Jenkins Server
4.x-HBase-1.0 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/4.x-HBase-1.0

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.x-HBase-1.0/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.x-HBase-1.0/lastCompletedBuild/testReport/

Changes
[jtaylor] PHOENIX-2586 Pass cloned BaseResultIterators mutationState through



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Jenkins build is back to normal : Phoenix-4.x-HBase-1.0 #306

2016-01-11 Thread Apache Jenkins Server
See