| 53 | } |
| 54 | |
| 55 | void |
| 56 | dtxFormGid(char *gid, DistributedTransactionId gxid) |
| 57 | { |
| 58 | sprintf(gid, UINT64_FORMAT, gxid); |
| 59 | /* gxid is unsigned int64 */ |
| 60 | Assert(strlen(gid) < TMGIDSIZE); |
| 61 | } |
| 62 | |
| 63 | const char * |
| 64 | DtxStateToString(DtxState state) |
no outgoing calls
no test coverage detected