Skip to content

Commit

Permalink
PHOENIX-6323 isRawFilterSupported() returns true for HBase 2.1 comapt…
Browse files Browse the repository at this point in the history
… module
  • Loading branch information
stoty committed Jan 20, 2021
1 parent 772ff2c commit 2738f0e
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 14 deletions.
4 changes: 2 additions & 2 deletions phoenix-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
("${hbase.compat.version}".equals("2.1.6")
&& hbaseMinor == 1
&& hbasePatch >=6)
|| ("${hbase.compat.version}".equals("2.2.1")
|| ("${hbase.compat.version}".equals("2.2.5")
&& hbaseMinor == 2
&& hbasePatch >=1)
&& hbasePatch >=5)
|| ("${hbase.compat.version}".equals("2.3.0")
&& hbaseMinor == 3
&& hbasePatch >=0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

package org.apache.phoenix.compat.hbase;

import org.apache.hadoop.conf.Configuration;

public class HbaseCompatCapabilities {

public static boolean isMaxLookbackTimeSupported() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
<version>5.1.0-SNAPSHOT</version>
</parent>

<artifactId>phoenix-hbase-compat-2.2.1</artifactId>
<name>Phoenix Hbase 2.2.1 compatibility</name>
<description>Compatibility module for HBase 2.2.1+</description>
<artifactId>phoenix-hbase-compat-2.2.5</artifactId>
<name>Phoenix Hbase 2.2.5 compatibility</name>
<description>Compatibility module for HBase 2.2.5+</description>

<properties>
<hbase22.compat.version>2.2.1</hbase22.compat.version>
<hbase22.compat.version>2.2.5</hbase22.compat.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

package org.apache.phoenix.compat.hbase;

import org.apache.hadoop.conf.Configuration;

public class HbaseCompatCapabilities {

public static boolean isMaxLookbackTimeSupported() {
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<modules>
<module>phoenix-hbase-compat-2.4.0</module>
<module>phoenix-hbase-compat-2.3.0</module>
<module>phoenix-hbase-compat-2.2.1</module>
<module>phoenix-hbase-compat-2.2.5</module>
<module>phoenix-hbase-compat-2.1.6</module>
<module>phoenix-core</module>
<module>phoenix-pherf</module>
Expand Down Expand Up @@ -671,7 +671,7 @@
</dependency>
<dependency>
<groupId>org.apache.phoenix</groupId>
<artifactId>phoenix-hbase-compat-2.2.1</artifactId>
<artifactId>phoenix-hbase-compat-2.2.5</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -1549,7 +1549,7 @@
</profile>
<profile>
<!-- PHOENIX-5993 This won't work with the public HBase artifacts -->
<id>phoenix-hbase-compat-2.2.1</id>
<id>phoenix-hbase-compat-2.2.5</id>
<activation>
<property>
<name>hbase.profile</name>
Expand All @@ -1558,7 +1558,7 @@
</activation>
<properties>
<hbase.profile>2.2</hbase.profile>
<hbase.compat.version>2.2.1</hbase.compat.version>
<hbase.compat.version>2.2.5</hbase.compat.version>
<hbase.version>${hbase-2.2.runtime.version}</hbase.version>
</properties>
</profile>
Expand Down

0 comments on commit 2738f0e

Please sign in to comment.