@@ -1895,8 +1895,6 @@ public void testIntervalAsString() {
18951895 }
18961896
18971897 public void testCategorizeSingleGrouping () {
1898- assumeTrue ("requires Categorize capability" , EsqlCapabilities .Cap .CATEGORIZE_V5 .isEnabled ());
1899-
19001898 query ("FROM test | STATS COUNT(*) BY CATEGORIZE(first_name)" );
19011899 query ("FROM test | STATS COUNT(*) BY cat = CATEGORIZE(first_name)" );
19021900 query ("FROM test | STATS COUNT(*) BY CATEGORIZE(first_name), emp_no" );
@@ -1917,8 +1915,6 @@ public void testCategorizeSingleGrouping() {
19171915 }
19181916
19191917 public void testCategorizeNestedGrouping () {
1920- assumeTrue ("requires Categorize capability" , EsqlCapabilities .Cap .CATEGORIZE_V5 .isEnabled ());
1921-
19221918 query ("from test | STATS COUNT(*) BY CATEGORIZE(LENGTH(first_name)::string)" );
19231919
19241920 assertEquals (
@@ -1932,8 +1928,6 @@ public void testCategorizeNestedGrouping() {
19321928 }
19331929
19341930 public void testCategorizeWithinAggregations () {
1935- assumeTrue ("requires Categorize capability" , EsqlCapabilities .Cap .CATEGORIZE_V5 .isEnabled ());
1936-
19371931 query ("from test | STATS MV_COUNT(cat), COUNT(*) BY cat = CATEGORIZE(first_name)" );
19381932 query ("from test | STATS MV_COUNT(CATEGORIZE(first_name)), COUNT(*) BY cat = CATEGORIZE(first_name)" );
19391933 query ("from test | STATS MV_COUNT(CATEGORIZE(first_name)), COUNT(*) BY CATEGORIZE(first_name)" );
@@ -1962,8 +1956,6 @@ public void testCategorizeWithinAggregations() {
19621956 }
19631957
19641958 public void testCategorizeWithFilteredAggregations () {
1965- assumeTrue ("requires Categorize capability" , EsqlCapabilities .Cap .CATEGORIZE_V5 .isEnabled ());
1966-
19671959 query ("FROM test | STATS COUNT(*) WHERE first_name == \" John\" BY CATEGORIZE(last_name)" );
19681960 query ("FROM test | STATS COUNT(*) WHERE last_name == \" Doe\" BY CATEGORIZE(last_name)" );
19691961
0 commit comments