You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/grouping/Categorize.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,8 @@ public boolean foldable() {
95
95
96
96
@Override
97
97
publicNullabilitynullable() {
98
-
// Both nulls and empty strings result in null values
98
+
// Null strings and strings that don't produce tokens after analysis lead to null values.
99
+
// This includes empty strings, only whitespace, (hexa)decimal numbers and stopwords.
0 commit comments