Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -980,6 +980,7 @@ beta | Kubernetes cluster
;

startsWithLucenePushdownIgnoreMultivalues
required_capability: starts_with_ends_with_lucene_pushdown

from hosts
| where starts_with(description, "epsilon")
Expand Down Expand Up @@ -1246,6 +1247,7 @@ beta | Kubernetes cluster
;

endsWithLucenePushdownIgnoreMultivalues
required_capability: starts_with_ends_with_lucene_pushdown

from hosts
| where ends_with(description, "host")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,12 @@ public enum Cap {
*/
MIXED_NUMERIC_TYPES_IN_CASE_GREATEST_LEAST,

/**
* Lucene query pushdown to StartsWith and EndsWith functions.
* This capability was created to avoid receiving wrong warnings from old nodes in mixed clusters
*/
STARTS_WITH_ENDS_WITH_LUCENE_PUSHDOWN,

/**
* Full text functions can be scored when being part of a disjunction
*/
Expand Down