| 650 | } |
| 651 | |
| 652 | static KeyValueRef const* lower_bound(VectorRef<KeyValueRef> const& config, KeyRef const& key) { |
| 653 | return std::lower_bound(config.begin(), config.end(), KeyValueRef(key, ValueRef()), KeyValueRef::OrderByKey()); |
| 654 | } |
| 655 | |
| 656 | void DatabaseConfiguration::applyMutation(MutationRef m) { |
| 657 | if (m.type == MutationRef::SetValue && m.param1.startsWith(configKeysPrefix)) { |
no test coverage detected