We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19051f1 commit d0d37abCopy full SHA for d0d37ab
src/main/java/com/alipay/oceanbase/rpc/table/ObTableClientQueryImpl.java
@@ -170,6 +170,10 @@ private AbstractQueryStreamResult commonExecute(InitQueryResultCallback<Abstract
170
// fill a whole range if no range is added explicitly.
171
if (tableQuery.getKeyRanges().isEmpty()) {
172
tableQuery.addKeyRange(ObNewRange.getWholeRange());
173
+ } else if (tableQuery.isFTSQuery()) {
174
+ // Currently, fulltext query only support scan all partitions
175
+ tableQuery.getKeyRanges().clear();
176
+ tableQuery.addKeyRange(ObNewRange.getWholeRange());
177
}
178
179
// init partitionObTables
0 commit comments