Skip to content

Commit

Permalink
Pruning numeric comparator
Browse files Browse the repository at this point in the history
Signed-off-by: Harsha Vamsi Kalluri <[email protected]>
  • Loading branch information
harshavamsi committed Nov 7, 2023
1 parent dd63559 commit 8afcc8f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 18 deletions.
6 changes: 5 additions & 1 deletion .idea/runConfigurations/Debug_OpenSearch.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ tasks.withType(JavaCompile).configureEach {
*****************************************************************************/

repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opensearch = 3.0.0
lucene = 9.8.0
lucene = 9.8.1-SNAPSHOT

bundled_jdk_vendor = adoptium
bundled_jdk = 20.0.2+9
Expand Down
2 changes: 1 addition & 1 deletion libs/core/src/main/java/org/opensearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_2_10_1 = new Version(2100199, org.apache.lucene.util.Version.LUCENE_9_7_0);
public static final Version V_2_11_0 = new Version(2110099, org.apache.lucene.util.Version.LUCENE_9_7_0);
public static final Version V_2_12_0 = new Version(2120099, org.apache.lucene.util.Version.LUCENE_9_8_0);
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_9_8_0);
public static final Version V_3_0_0 = new Version(3000099, org.apache.lucene.util.Version.LUCENE_9_8_1);
public static final Version CURRENT = V_3_0_0;

public static Version fromId(int id) {
Expand Down

0 comments on commit 8afcc8f

Please sign in to comment.