| 164 | } |
| 165 | |
| 166 | static inline UInt64 getMetadataHash(const String & table_name, const String & metadata) |
| 167 | { |
| 168 | SipHash hash; |
| 169 | hash.update(table_name); |
| 170 | hash.update(metadata); |
| 171 | return hash.get64(); |
| 172 | } |
| 173 | |
| 174 | DatabaseReplicated::~DatabaseReplicated() = default; |
| 175 |
no test coverage detected