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
- Enforce a more reasonable limit on the number of included/excluded indexes
- Serialize vints rather than shorts in IndexSetSerializer
- Return Iterable from notExcluded() to avoid set creation
- Avoid redundant iteration in MessagingService#endpointsWithConnectionsOnVersionBelow()
patch by Caleb Rackliffe; reviewed by Marcus Eriksson for CASSANDRA-20888
publicstaticfinalStringWRONG_KEYSPACE_ERROR = "Index %s is not in the same keyspace as the queried table.";
58
60
publicstaticfinalStringMISSING_INDEX_ERROR = "Table %s doesn't have an index named %s";
59
61
publicstaticfinalStringNON_INCLUDABLE_INDEXES_ERROR = "It's not possible to use all the specified included indexes with this query.";
60
-
publicstaticfinalStringTOO_MANY_INDEXES_ERROR = format("Cannot have more than %d included/excluded indexes, found ", Short.MAX_VALUE);
62
+
publicstaticfinalStringTOO_MANY_INDEXES_ERROR = "Cannot have more than 'secondary_indexes_per_table_fail_threshold' included/excluded indexes, found ";
0 commit comments