Skip to content

Commit

Permalink
Merge pull request #283 from weaviate/index_range_filters_support
Browse files Browse the repository at this point in the history
IndexRangeFilters support
  • Loading branch information
antas-marcin committed Jul 14, 2024
2 parents ef86240 + 9c52a19 commit 21f2f08
Show file tree
Hide file tree
Showing 5 changed files with 757 additions and 118 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class Property {
Boolean indexInverted;
Boolean indexFilterable;
Boolean indexSearchable;
Boolean indexRangeFilters;
Object moduleConfig;
List<NestedProperty> nestedProperties;

Expand All @@ -43,6 +44,7 @@ public static class NestedProperty {
String tokenization;
Boolean indexFilterable;
Boolean indexSearchable;
Boolean indexRangeFilters;
List<NestedProperty> nestedProperties;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

public class WeaviateDockerImage {

public static final String WEAVIATE_DOCKER_IMAGE = String.format("semitechnologies/weaviate:%s", WeaviateVersion.EXPECTED_WEAVIATE_VERSION);
public static final String WEAVIATE_DOCKER_IMAGE = String.format("semitechnologies/weaviate:%s", WeaviateVersion.WEAVIATE_IMAGE);

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

public class WeaviateVersion {

public static final String WEAVIATE_IMAGE = "preview-range-roaring-set-index-rename-indexrangeble-to-indexrangefilters-1083432";

// to be set according to weaviate docker image
public static final String EXPECTED_WEAVIATE_VERSION = "1.25.1";
public static final String EXPECTED_WEAVIATE_VERSION = "1.26.0-rc.0";
// to be set according to weaviate docker image
public static final String EXPECTED_WEAVIATE_GIT_HASH = "2fc82d0";
public static final String EXPECTED_WEAVIATE_GIT_HASH = "1083432";

private WeaviateVersion() {}
}
Loading

0 comments on commit 21f2f08

Please sign in to comment.