| 665 | } |
| 666 | |
| 667 | bool DatabaseConfiguration::involveMutation(MutationRef m) { |
| 668 | return (m.type == MutationRef::SetValue && m.param1.startsWith(configKeysPrefix)) || |
| 669 | (m.type == MutationRef::ClearRange && KeyRangeRef(m.param1, m.param2).intersects(configKeys)); |
| 670 | } |
| 671 | |
| 672 | bool DatabaseConfiguration::set(KeyRef key, ValueRef value) { |
| 673 | makeConfigurationMutable(); |
no test coverage detected