Apache-Phoenix | 4.x | HBase 1.3 | Build #23 ABORTED

2020-09-10 Thread Apache Jenkins Server

4.x branch  HBase 1.3  build #23 status ABORTED
Build #23 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/23/


Apache-Phoenix | 4.x | HBase 1.4 | Build #23 ABORTED

2020-09-10 Thread Apache Jenkins Server

4.x branch  HBase 1.4  build #23 status ABORTED
Build #23 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/23/


Apache-Phoenix | master | HBase 2.2 | Build #28 FAILURE

2020-09-10 Thread Apache Jenkins Server

master branch  HBase 2.2  build #28 status FAILURE
Build #28 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/28/


Apache-Phoenix | 4.x | HBase 1.6 | Build #23 SUCCESS

2020-09-10 Thread Apache Jenkins Server

4.x branch  HBase 1.6  build #23 status SUCCESS
Build #23 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/4.x/23/


Apache-Phoenix | master | HBase 2.3 | Build #28 FAILURE

2020-09-10 Thread Apache Jenkins Server

master branch  HBase 2.3  build #28 status FAILURE
Build #28 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/28/


Apache-Phoenix | master | HBase 2.1 | Build #28 FAILURE

2020-09-10 Thread Apache Jenkins Server

master branch  HBase 2.1  build #28 status FAILURE
Build #28 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/28/


[phoenix] branch 4.x updated: PHOENIX-6069: We should check that the parent table key is in the region in the MetaDataEndpointImpl.dropTable code

2020-09-10 Thread chinmayskulkarni
This is an automated email from the ASF dual-hosted git repository.

chinmayskulkarni pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
 new e3c7b4b  PHOENIX-6069: We should check that the parent table key is in 
the region in the MetaDataEndpointImpl.dropTable code
e3c7b4b is described below

commit e3c7b4bdce2524eb4fd1e7eb0ccd3454fcca81ce
Author: Chinmay Kulkarni 
AuthorDate: Tue Aug 11 11:40:42 2020 -0700

PHOENIX-6069: We should check that the parent table key is in the region in 
the MetaDataEndpointImpl.dropTable code
---
 .../main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
index 00ce50f..236b3f5 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
@@ -2228,7 +2228,7 @@ public class MetaDataEndpointImpl extends 
MetaDataProtocol implements Coprocesso
 // Only lock parent table for indexes
 if (parentTableName != null && pTableType == PTableType.INDEX) {
 parentLockKey = SchemaUtil.getTableKey(tenantIdBytes, 
schemaName, parentTableName);
-result = checkTableKeyInRegion(lockKey, region);
+result = checkTableKeyInRegion(parentLockKey, region);
 if (result != null) {
 done.run(MetaDataMutationResult.toProto(result));
 return;



[phoenix] branch master updated: PHOENIX-6069: We should check that the parent table key is in the region in the MetaDataEndpointImpl.dropTable code

2020-09-10 Thread chinmayskulkarni
This is an automated email from the ASF dual-hosted git repository.

chinmayskulkarni pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
 new 747004e  PHOENIX-6069: We should check that the parent table key is in 
the region in the MetaDataEndpointImpl.dropTable code
747004e is described below

commit 747004e70ac8f06d171a443e31657338616864bc
Author: Chinmay Kulkarni 
AuthorDate: Tue Aug 11 11:40:42 2020 -0700

PHOENIX-6069: We should check that the parent table key is in the region in 
the MetaDataEndpointImpl.dropTable code
---
 .../main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
index b0901f1..54883f8 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
@@ -2248,7 +2248,7 @@ public class MetaDataEndpointImpl extends 
MetaDataProtocol implements RegionCopr
 // Only lock parent table for indexes
 if (parentTableName != null && pTableType == PTableType.INDEX) {
 parentLockKey = SchemaUtil.getTableKey(tenantIdBytes, 
schemaName, parentTableName);
-result = checkTableKeyInRegion(lockKey, region);
+result = checkTableKeyInRegion(parentLockKey, region);
 if (result != null) {
 done.run(MetaDataMutationResult.toProto(result));
 return;