File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/com/alipay/oceanbase/rpc Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ public static boolean isLsOpSupport() {
8787 }
8888
8989 public static boolean isFtsQuerySupport () {
90- return OB_VERSION >= OB_VERSION_4_3_5_1 ;
90+ // tmp use, before merge to master, we should change 435 to 4351
91+ return OB_VERSION >= OB_VERSION_4_3_5_0 ;
9192 }
9293
9394 public static boolean isReturnOneResultSupport () {
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ public void checkArgumentBeforeExec() throws Exception {
133133 throw new IllegalArgumentException ("table name is null" );
134134 } else if (tableQuery .isFTSQuery ()) {
135135 if (!ObGlobal .isFtsQuerySupport ()) {
136- throw new FeatureNotSupportedException ("full text query is not supported in " +ObGlobal .OB_VERSION );
136+ throw new FeatureNotSupportedException ("full text query is not supported in " +ObGlobal .obVsnString () );
137137 }
138138 if (tableQuery .getIndexName () == null || tableQuery .getIndexName ().isEmpty ()
139139 || tableQuery .getIndexName ().equalsIgnoreCase ("primary" )) {
You can’t perform that action at this time.
0 commit comments