v.20.10Improvement
Ignore Key Constraints in Mutations with Index and Primary Key Flags
Ignore key constraints when doing mutations. Without this pull request, it's not possible to do mutations whenforce_index_by_date = 1orforce_primary_key = 1. #14973 (Amos Bird).
Why it matters
Before this feature, performing mutations was blocked if eitherforce_index_by_date or force_primary_key settings were enabled, limiting flexibility during data modification. This update removes that restriction, allowing users to mutate data regardless of these constraints, thereby enhancing mutation capabilities and operational flexibility.How to use it
Users can perform mutations as usual withMUTATE queries even when the settings force_index_by_date = 1 or force_primary_key = 1 are active, without additional configuration required.