| 49 | class AnyValUtil { |
| 50 | public: |
| 51 | static uint32_t Hash(const BooleanVal& v, const FunctionContext::TypeDesc&, int seed) { |
| 52 | return HashUtil::Hash(&v.val, 1, seed); |
| 53 | } |
| 54 | |
| 55 | static uint32_t Hash(const TinyIntVal& v, const FunctionContext::TypeDesc&, int seed) { |
| 56 | return HashUtil::Hash(&v.val, 1, seed); |