diff options
Diffstat (limited to 'src/backend/utils/error/jsonlog.c')
-rw-r--r-- | src/backend/utils/error/jsonlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/error/jsonlog.c b/src/backend/utils/error/jsonlog.c index 067d9e30b16..d52c2143033 100644 --- a/src/backend/utils/error/jsonlog.c +++ b/src/backend/utils/error/jsonlog.c @@ -197,9 +197,9 @@ write_jsonlog(ErrorData *edata) /* Virtual transaction id */ /* keep VXID format in sync with lockfuncs.c */ - if (MyProc != NULL && MyProc->vxid.backendId != InvalidBackendId) + if (MyProc != NULL && MyProc->vxid.procNumber != INVALID_PROC_NUMBER) appendJSONKeyValueFmt(&buf, "vxid", true, "%d/%u", - MyProc->vxid.backendId, MyProc->vxid.lxid); + MyProc->vxid.procNumber, MyProc->vxid.lxid); /* Transaction id */ appendJSONKeyValueFmt(&buf, "txid", false, "%u", |