| 121 | }; |
| 122 | |
| 123 | UInt64 ObfuscateQueryFunction::hashStringToUInt64(std::string_view s) |
| 124 | { |
| 125 | SipHash h; |
| 126 | h.update(s); |
| 127 | return h.get64(); |
| 128 | } |
| 129 | |
| 130 | std::optional<UInt64> ObfuscateQueryFunction::extractConstSeedFromArg(const ColumnPtr & col) |
| 131 | { |