Jenkins build is back to normal : Phoenix | Master #1615

2017-05-18 Thread Apache Jenkins Server
See 




Jenkins build is back to normal : Phoenix-4.x-HBase-1.1 #394

2017-05-18 Thread Apache Jenkins Server
See 




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

2017-05-18 Thread Apache Jenkins Server
4.x-HBase-0.98 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-0.98

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

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

Changes
[jamestaylor] PHOENIX-3858 Index maintenance not required for local indexes of table



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-3858 Index maintenance not required for local indexes of table with immutable rows

2017-05-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.2 74281ee51 -> 18bbe9434


PHOENIX-3858 Index maintenance not required for local indexes of table with 
immutable rows


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

Branch: refs/heads/4.x-HBase-1.2
Commit: 18bbe943461e73ba9dec0f8f8cab94a717409ca1
Parents: 74281ee
Author: James Taylor 
Authored: Thu May 18 10:14:01 2017 -0700
Committer: James Taylor 
Committed: Thu May 18 11:34:04 2017 -0700

--
 .../EndToEndCoveredColumnsIndexBuilderIT.java   |  19 ++-
 .../hbase/index/covered/LocalTableState.java|  20 ++--
 .../hbase/index/covered/NonTxIndexBuilder.java  |   3 +
 .../phoenix/hbase/index/covered/TableState.java |   3 +-
 .../example/CoveredColumnIndexCodec.java|  14 +--
 .../apache/phoenix/index/PhoenixIndexCodec.java |   4 +-
 .../index/PhoenixTransactionalIndexer.java  |   3 +-
 .../index/covered/TestLocalTableState.java  | 118 +--
 8 files changed, 151 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/18bbe943/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
index 00157b1..97d8f3e 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
@@ -43,14 +43,14 @@ import org.apache.hadoop.hbase.client.HTable;
 import org.apache.hadoop.hbase.client.Put;
 import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.phoenix.util.EnvironmentEdge;
-import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.hbase.index.IndexTestingUtils;
 import org.apache.phoenix.hbase.index.Indexer;
 import org.apache.phoenix.hbase.index.TableName;
 import org.apache.phoenix.hbase.index.covered.update.ColumnReference;
 import org.apache.phoenix.hbase.index.scanner.Scanner;
+import org.apache.phoenix.util.EnvironmentEdge;
+import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.junit.AfterClass;
 import org.junit.Before;
 import org.junit.BeforeClass;
@@ -146,9 +146,22 @@ public class EndToEndCoveredColumnsIndexBuilderIT {
 
 @Override
 public void verify(TableState state) {
+IndexMetaData indexMetaData = new IndexMetaData() {
+
+@Override
+public boolean isImmutableRows() {
+return false;
+}
+
+@Override
+public boolean ignoreNewerMutations() {
+return false;
+}
+  
+  };
   try {
 Scanner kvs =
-((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, 
false).getFirst();
+((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, false, 
indexMetaData).getFirst();
 
 int count = 0;
 Cell kv;

http://git-wip-us.apache.org/repos/asf/phoenix/blob/18bbe943/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
index 59e7801..245bd66 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
@@ -136,6 +136,7 @@ public class LocalTableState implements TableState {
  * @param ignoreNewerMutations ignore mutations newer than m when 
determining current state. Useful
  *when replaying mutation state for partial index rebuild where 
writes succeeded to the data
  *table, but not to the index table.
+ * @param indexMetaData TODO
  * @return an iterator over the columns and the {@link IndexUpdate} that 
should be passed back to
  * the builder. Even if no update is necessary for the requested 
columns, you still need
  *   

phoenix git commit: PHOENIX-3858 Index maintenance not required for local indexes of table with immutable rows

2017-05-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.1 d41dd1d4d -> 07e96a910


PHOENIX-3858 Index maintenance not required for local indexes of table with 
immutable rows


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

Branch: refs/heads/4.x-HBase-1.1
Commit: 07e96a910f1193feb1a8a6e2790e22c795c0b6d5
Parents: d41dd1d
Author: James Taylor 
Authored: Thu May 18 10:14:01 2017 -0700
Committer: James Taylor 
Committed: Thu May 18 11:32:47 2017 -0700

--
 .../EndToEndCoveredColumnsIndexBuilderIT.java   |  19 ++-
 .../hbase/index/covered/LocalTableState.java|  20 ++--
 .../hbase/index/covered/NonTxIndexBuilder.java  |   3 +
 .../phoenix/hbase/index/covered/TableState.java |   3 +-
 .../example/CoveredColumnIndexCodec.java|  14 +--
 .../apache/phoenix/index/PhoenixIndexCodec.java |   4 +-
 .../index/PhoenixTransactionalIndexer.java  |   3 +-
 .../index/covered/TestLocalTableState.java  | 118 +--
 8 files changed, 151 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/07e96a91/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
index 00157b1..97d8f3e 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
@@ -43,14 +43,14 @@ import org.apache.hadoop.hbase.client.HTable;
 import org.apache.hadoop.hbase.client.Put;
 import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.phoenix.util.EnvironmentEdge;
-import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.hbase.index.IndexTestingUtils;
 import org.apache.phoenix.hbase.index.Indexer;
 import org.apache.phoenix.hbase.index.TableName;
 import org.apache.phoenix.hbase.index.covered.update.ColumnReference;
 import org.apache.phoenix.hbase.index.scanner.Scanner;
+import org.apache.phoenix.util.EnvironmentEdge;
+import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.junit.AfterClass;
 import org.junit.Before;
 import org.junit.BeforeClass;
@@ -146,9 +146,22 @@ public class EndToEndCoveredColumnsIndexBuilderIT {
 
 @Override
 public void verify(TableState state) {
+IndexMetaData indexMetaData = new IndexMetaData() {
+
+@Override
+public boolean isImmutableRows() {
+return false;
+}
+
+@Override
+public boolean ignoreNewerMutations() {
+return false;
+}
+  
+  };
   try {
 Scanner kvs =
-((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, 
false).getFirst();
+((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, false, 
indexMetaData).getFirst();
 
 int count = 0;
 Cell kv;

http://git-wip-us.apache.org/repos/asf/phoenix/blob/07e96a91/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
index 59e7801..245bd66 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
@@ -136,6 +136,7 @@ public class LocalTableState implements TableState {
  * @param ignoreNewerMutations ignore mutations newer than m when 
determining current state. Useful
  *when replaying mutation state for partial index rebuild where 
writes succeeded to the data
  *table, but not to the index table.
+ * @param indexMetaData TODO
  * @return an iterator over the columns and the {@link IndexUpdate} that 
should be passed back to
  * the builder. Even if no update is necessary for the requested 
columns, you still need
  *   

phoenix git commit: PHOENIX-3858 Index maintenance not required for local indexes of table with immutable rows

2017-05-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 b16cb265a -> 40941eb6b


PHOENIX-3858 Index maintenance not required for local indexes of table with 
immutable rows


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 40941eb6b5e43e96155f0d1e54b2bd493421d561
Parents: b16cb26
Author: James Taylor 
Authored: Thu May 18 10:14:01 2017 -0700
Committer: James Taylor 
Committed: Thu May 18 11:31:43 2017 -0700

--
 .../EndToEndCoveredColumnsIndexBuilderIT.java   |  19 ++-
 .../hbase/index/covered/LocalTableState.java|  20 ++--
 .../hbase/index/covered/NonTxIndexBuilder.java  |   3 +
 .../phoenix/hbase/index/covered/TableState.java |   3 +-
 .../example/CoveredColumnIndexCodec.java|  14 +--
 .../apache/phoenix/index/PhoenixIndexCodec.java |   4 +-
 .../index/PhoenixTransactionalIndexer.java  |   3 +-
 .../index/covered/TestLocalTableState.java  | 119 +--
 8 files changed, 151 insertions(+), 34 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/40941eb6/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
index c0b6bf6..86fb323 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
@@ -43,14 +43,14 @@ import org.apache.hadoop.hbase.client.HTable;
 import org.apache.hadoop.hbase.client.Put;
 import org.apache.hadoop.hbase.regionserver.HRegion;
 import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.phoenix.util.EnvironmentEdge;
-import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.hbase.index.IndexTestingUtils;
 import org.apache.phoenix.hbase.index.Indexer;
 import org.apache.phoenix.hbase.index.TableName;
 import org.apache.phoenix.hbase.index.covered.update.ColumnReference;
 import org.apache.phoenix.hbase.index.scanner.Scanner;
+import org.apache.phoenix.util.EnvironmentEdge;
+import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.junit.AfterClass;
 import org.junit.Before;
 import org.junit.BeforeClass;
@@ -147,9 +147,22 @@ public class EndToEndCoveredColumnsIndexBuilderIT {
 @SuppressWarnings("deprecation")
 @Override
 public void verify(TableState state) {
+IndexMetaData indexMetaData = new IndexMetaData() {
+
+@Override
+public boolean isImmutableRows() {
+return false;
+}
+
+@Override
+public boolean ignoreNewerMutations() {
+return false;
+}
+  
+  };
   try {
 Scanner kvs =
-((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, 
false).getFirst();
+((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, false, 
indexMetaData).getFirst();
 
 int count = 0;
 Cell kv;

http://git-wip-us.apache.org/repos/asf/phoenix/blob/40941eb6/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
index 59e7801..245bd66 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
@@ -136,6 +136,7 @@ public class LocalTableState implements TableState {
  * @param ignoreNewerMutations ignore mutations newer than m when 
determining current state. Useful
  *when replaying mutation state for partial index rebuild where 
writes succeeded to the data
  *table, but not to the index table.
+ * @param indexMetaData TODO
  * @return an iterator over the columns and the {@link IndexUpdate} that 
should be passed back to
  * the builder. Even if no update is necessary for the 

phoenix git commit: PHOENIX-3858 Index maintenance not required for local indexes of table with immutable rows

2017-05-18 Thread jamestaylor
Repository: phoenix
Updated Branches:
  refs/heads/master 0e652b6ec -> 21fb0b31b


PHOENIX-3858 Index maintenance not required for local indexes of table with 
immutable rows


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

Branch: refs/heads/master
Commit: 21fb0b31b46da3b7cc27265467d83a1b4cd5c5c5
Parents: 0e652b6
Author: James Taylor 
Authored: Thu May 18 10:14:01 2017 -0700
Committer: James Taylor 
Committed: Thu May 18 10:14:01 2017 -0700

--
 .../EndToEndCoveredColumnsIndexBuilderIT.java   |  19 ++-
 .../hbase/index/covered/LocalTableState.java|  20 ++--
 .../hbase/index/covered/NonTxIndexBuilder.java  |   3 +
 .../phoenix/hbase/index/covered/TableState.java |   3 +-
 .../example/CoveredColumnIndexCodec.java|  14 +--
 .../apache/phoenix/index/PhoenixIndexCodec.java |   4 +-
 .../index/PhoenixTransactionalIndexer.java  |   3 +-
 .../index/covered/TestLocalTableState.java  | 118 +--
 8 files changed, 151 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/21fb0b31/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
--
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
index 00157b1..97d8f3e 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/hbase/index/covered/EndToEndCoveredColumnsIndexBuilderIT.java
@@ -43,14 +43,14 @@ import org.apache.hadoop.hbase.client.HTable;
 import org.apache.hadoop.hbase.client.Put;
 import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.phoenix.util.EnvironmentEdge;
-import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.hbase.index.IndexTestingUtils;
 import org.apache.phoenix.hbase.index.Indexer;
 import org.apache.phoenix.hbase.index.TableName;
 import org.apache.phoenix.hbase.index.covered.update.ColumnReference;
 import org.apache.phoenix.hbase.index.scanner.Scanner;
+import org.apache.phoenix.util.EnvironmentEdge;
+import org.apache.phoenix.util.EnvironmentEdgeManager;
 import org.junit.AfterClass;
 import org.junit.Before;
 import org.junit.BeforeClass;
@@ -146,9 +146,22 @@ public class EndToEndCoveredColumnsIndexBuilderIT {
 
 @Override
 public void verify(TableState state) {
+IndexMetaData indexMetaData = new IndexMetaData() {
+
+@Override
+public boolean isImmutableRows() {
+return false;
+}
+
+@Override
+public boolean ignoreNewerMutations() {
+return false;
+}
+  
+  };
   try {
 Scanner kvs =
-((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, 
false).getFirst();
+((LocalTableState) 
state).getIndexedColumnsTableState(Arrays.asList(columns), false, false, 
indexMetaData).getFirst();
 
 int count = 0;
 Cell kv;

http://git-wip-us.apache.org/repos/asf/phoenix/blob/21fb0b31/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
index 59e7801..245bd66 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/hbase/index/covered/LocalTableState.java
@@ -136,6 +136,7 @@ public class LocalTableState implements TableState {
  * @param ignoreNewerMutations ignore mutations newer than m when 
determining current state. Useful
  *when replaying mutation state for partial index rebuild where 
writes succeeded to the data
  *table, but not to the index table.
+ * @param indexMetaData TODO
  * @return an iterator over the columns and the {@link IndexUpdate} that 
should be passed back to
  * the builder. Even if no update is necessary for the requested 
columns, you still need
  * to 

Build failed in Jenkins: Phoenix Compile Compatibility with HBase #292

2017-05-18 Thread Apache Jenkins Server
See 


--
Started by timer
[EnvInject] - Loading node environment variables.
Building remotely on H14 (ubuntu xenial) in workspace 

[Phoenix_Compile_Compat_wHBase] $ /bin/bash /tmp/hudson4979250538479921453.sh
core file size  (blocks, -c) 0
data seg size   (kbytes, -d) unlimited
scheduling priority (-e) 0
file size   (blocks, -f) unlimited
pending signals (-i) 386417
max locked memory   (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files  (-n) 6
pipe size(512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority  (-r) 0
stack size  (kbytes, -s) 8192
cpu time   (seconds, -t) unlimited
max user processes  (-u) 10240
virtual memory  (kbytes, -v) unlimited
file locks  (-x) unlimited
core id : 0
core id : 1
core id : 2
core id : 3
core id : 4
core id : 5
physical id : 0
physical id : 1
MemTotal:   98958120 kB
MemFree:30126088 kB
Filesystem  Size  Used Avail Use% Mounted on
udev 48G 0   48G   0% /dev
tmpfs   9.5G  978M  8.5G  11% /run
/dev/sda1   364G  255G   91G  74% /
tmpfs48G  508K   48G   1% /dev/shm
tmpfs   5.0M 0  5.0M   0% /run/lock
tmpfs48G 0   48G   0% /sys/fs/cgroup
tmpfs   9.5G 0  9.5G   0% /run/user/10025
apache-maven-2.2.1
apache-maven-3.0.4
apache-maven-3.0.5
apache-maven-3.2.1
apache-maven-3.2.5
apache-maven-3.3.3
apache-maven-3.3.9
latest
latest2
latest3


===
Verifying compile level compatibility with HBase 0.98 with Phoenix 
4.x-HBase-0.98
===

Cloning into 'hbase'...
Switched to a new branch '0.98'
Branch 0.98 set up to track remote branch 0.98 from origin.

main:
 [exec] 
~/jenkins-slave/workspace/Phoenix_Compile_Compat_wHBase/hbase/hbase-common 
~/jenkins-slave/workspace/Phoenix_Compile_Compat_wHBase/hbase/hbase-common
 [exec] 
~/jenkins-slave/workspace/Phoenix_Compile_Compat_wHBase/hbase/hbase-common

main:
[mkdir] Created dir: 

 [exec] tar: hadoop-snappy-nativelibs.tar: Cannot open: No such file or 
directory
 [exec] tar: Error is not recoverable: exiting now
 [exec] Result: 2

main:
[mkdir] Created dir: 

 [copy] Copying 20 files to 

[mkdir] Created dir: 

[mkdir] Created dir: 


main:
[mkdir] Created dir: 

 [copy] Copying 17 files to 

[mkdir] Created dir: 


main:
[mkdir] Created dir: 

 [copy] Copying 1 file to 

[mkdir] Created dir: 


HBase pom.xml:

Got HBase version as 0.98.25-SNAPSHOT
Cloning into 'phoenix'...
Switched to a new branch '4.x-HBase-0.98'
Branch 4.x-HBase-0.98 set up to track remote branch 4.x-HBase-0.98 from origin.
ANTLR Parser Generator  Version 3.5.2
Output file 

 does not exist: must build 

PhoenixSQL.g


===
Verifying compile level compatibility with HBase branch-1.3 with Phoenix master