| 153 | } |
| 154 | |
| 155 | StringVal UtilityFunctions::Version(FunctionContext* ctx) { |
| 156 | return AnyValUtil::FromString(ctx, GetVersionString()); |
| 157 | } |
| 158 | |
| 159 | IntVal UtilityFunctions::Pid(FunctionContext* ctx) { |
| 160 | int pid = ctx->impl()->state()->query_ctx().pid; |
nothing calls this directly
no test coverage detected