| 2803 | } |
| 2804 | |
| 2805 | void redisDbPersistentData::ensure(const char *key) |
| 2806 | { |
| 2807 | if (m_pdbSnapshot == nullptr && m_spstorage == nullptr) |
| 2808 | return; |
| 2809 | dictEntry *de = dictFind(m_pdict, key); |
| 2810 | ensure(key, &de); |
| 2811 | } |
| 2812 | |
| 2813 | void redisDbPersistentData::ensure(const char *sdsKey, dictEntry **pde) |
| 2814 | { |
nothing calls this directly
no test coverage detected