You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ch...@apache.org on 2020/11/23 18:51:04 UTC

[phoenix] branch 4.x updated: PHOENIX-6155 : Use CompatRegionCoprocessorEnvironment (ADDENDUM)

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 1c055e3  PHOENIX-6155 : Use CompatRegionCoprocessorEnvironment (ADDENDUM)
1c055e3 is described below

commit 1c055e3050c0e64ce009eb3127b62b08fd75ee3a
Author: Viraj Jasani <vj...@apache.org>
AuthorDate: Mon Nov 23 18:43:04 2020 +0530

    PHOENIX-6155 : Use CompatRegionCoprocessorEnvironment (ADDENDUM)
    
    Signed-off-by: Chinmay Kulkarni <ch...@apache.org>
---
 .../java/org/apache/phoenix/coprocessor/TaskMetaDataEndpointTest.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/phoenix-core/src/test/java/org/apache/phoenix/coprocessor/TaskMetaDataEndpointTest.java b/phoenix-core/src/test/java/org/apache/phoenix/coprocessor/TaskMetaDataEndpointTest.java
index ae19bc6..fb2e9e9 100644
--- a/phoenix-core/src/test/java/org/apache/phoenix/coprocessor/TaskMetaDataEndpointTest.java
+++ b/phoenix-core/src/test/java/org/apache/phoenix/coprocessor/TaskMetaDataEndpointTest.java
@@ -32,6 +32,7 @@ import org.apache.hadoop.hbase.protobuf.generated.ClientProtos;
 import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.regionserver.RegionServerServices;
 import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.phoenix.compat.hbase.CompatRegionCoprocessorEnvironment;
 import org.apache.phoenix.coprocessor.generated.MetaDataProtos;
 import org.apache.phoenix.coprocessor.generated.TaskMetaDataProtos;
 import org.apache.phoenix.protobuf.ProtobufUtil;
@@ -70,7 +71,7 @@ public class TaskMetaDataEndpointTest {
         MockitoAnnotations.initMocks(this);
         configuration = new Configuration();
         RegionCoprocessorEnvironment environment =
-                new RegionCoprocessorEnvironment() {
+                new CompatRegionCoprocessorEnvironment() {
 
             @Override
             public int getVersion() {