nfsantos commented on code in PR #853:
URL: https://github.com/apache/jackrabbit-oak/pull/853#discussion_r1112686285
##########
oak-search-elastic/src/main/java/org/apache/jackrabbit/oak/plugins/index/elastic/query/ElasticIndexPlanner.java:
##########
@@ -36,6 +37,10 @@ public ElasticIndexPlanner(IndexNode indexNode, String
indexPath, Filter filter,
super(indexNode, indexPath, filter, sortOrder);
}
+ /**
+ * Overrides the basic planner to add support for all the defined
properties regardless from the ordered flag since
Review Comment:
```suggestion
* Overrides the basic planner to add support for all the defined
properties regardless of the ordered flag since
```
##########
oak-lucene/src/test/java/org/apache/jackrabbit/oak/plugins/index/lucene/LuceneOrderByTest.java:
##########
@@ -0,0 +1,58 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.jackrabbit.oak.plugins.index.lucene;
+
+import org.apache.jackrabbit.oak.api.ContentRepository;
+import org.apache.jackrabbit.oak.plugins.index.LuceneIndexOptions;
+import org.apache.jackrabbit.oak.plugins.index.OrderByCommonTest;
+import org.junit.Ignore;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.TemporaryFolder;
+
+import java.io.File;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+
+public class LuceneOrderByTest extends OrderByCommonTest {
+
+ private ExecutorService executorService = Executors.newFixedThreadPool(2);
+ @Rule
+ public TemporaryFolder temporaryFolder = new TemporaryFolder(new
File("target"));
+
+ @Override
+ protected ContentRepository createRepository() {
+ repositoryOptionsUtil = new
LuceneTestRepositoryBuilder(executorService, temporaryFolder).build();
+ indexOptions = new LuceneIndexOptions();
+ return repositoryOptionsUtil.getOak().createContentRepository();
+ }
+
+ @Ignore("OAK-7370")
+ @Test
+ @Override
+ public void orderByScoreAcrossUnion() throws Exception {
+ super.orderByScoreAcrossUnion();
+ }
+
+ @Ignore("some condition does not work in lucene")
Review Comment:
This sentence is not clear. What conditions?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]