Skip to content

Commit

Permalink
Fix EsqlCapabilities to refer to correctly refer to snapshot builds (e…
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest authored Oct 29, 2024
1 parent ea424f4 commit be45461
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,12 @@ public enum Cap {
/**
* QSTR function
*/
QSTR_FUNCTION(true),
QSTR_FUNCTION(Build.current().isSnapshot()),

/**
* MATCH function
*/
MATCH_FUNCTION(true),
MATCH_FUNCTION(Build.current().isSnapshot()),

/**
* Don't optimize CASE IS NOT NULL function by not requiring the fields to be not null as well.
Expand Down

0 comments on commit be45461

Please sign in to comment.