| 318 | } |
| 319 | |
| 320 | TimestampVal TimestampFunctions::Now(FunctionContext* context) { |
| 321 | const TimestampValue* now = context->impl()->state()->now(); |
| 322 | TimestampVal return_val; |
| 323 | now->ToTimestampVal(&return_val); |
| 324 | return return_val; |
| 325 | } |
| 326 | |
| 327 | TimestampVal TimestampFunctions::UtcTimestamp(FunctionContext* context) { |
| 328 | const TimestampValue* utc_timestamp = context->impl()->state()->utc_timestamp(); |
nothing calls this directly
no test coverage detected