Skip to content

Commit b4db844

Browse files
authored
Merge pull request #365 from oceanbase/fix_ddl_440
Fix 440 ObServer does not support getStartEndKey interface
2 parents 1a5c654 + 9f151f4 commit b4db844

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/alipay/oceanbase/rpc/ObGlobal.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public static boolean isDistributedExecSupport() {
114114
}
115115

116116
public static boolean isHBaseAdminSupport() {
117-
return OB_VERSION >= OB_VERSION_4_3_5_3;
117+
return OB_VERSION >= OB_VERSION_4_3_5_3 && OB_VERSION < OB_VERSION_4_4_0_0;
118118
}
119119

120120
public static boolean isCellTTLSupport() {
@@ -137,5 +137,7 @@ public static boolean isCellTTLSupport() {
137137

138138
public static final long OB_VERSION_4_3_5_3 = calcVersion(4, (short) 3, (byte) 5, (byte) 3);
139139

140+
public static final long OB_VERSION_4_4_0_0 = calcVersion(4, (short) 4, (byte) 0, (byte) 0);
141+
140142
public static long OB_VERSION = calcVersion(0, (short) 0, (byte) 0, (byte) 0);
141143
}

0 commit comments

Comments
 (0)