| 86 | } |
| 87 | |
| 88 | static void WriteUnixTimestampSlot(int64_t unix_time_micros, void* slot) { |
| 89 | *reinterpret_cast<TimestampValue*>(slot) = |
| 90 | TimestampValue::UtcFromUnixTimeMicros(unix_time_micros); |
| 91 | } |
| 92 | |
| 93 | static void WriteBigIntSlot(int64_t value, void* slot) { |
| 94 | *reinterpret_cast<int64_t*>(slot) = value; |
no outgoing calls
no test coverage detected