projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6969dee
)
Fix comment in xact.h
author
Michael Paquier
<michael@paquier.xyz>
Wed, 20 Nov 2019 08:48:31 +0000
(17:48 +0900)
committer
Michael Paquier
<michael@paquier.xyz>
Wed, 20 Nov 2019 08:48:31 +0000
(17:48 +0900)
xl_xact_relfilenodes refers to a number of relations, not XIDs, whose
relfilenodes are processed.
Author: Yu Kimura
Discussion: https://postgr.es/m/
a6ba6cf6bd0c990e019f008bae83437f
@oss.nttdata.com
src/include/access/xact.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/access/xact.h
b/src/include/access/xact.h
index 42b76cb4dd3defb373275688e9921251b17dd49a..9d2899dea176077a24ac184a76dcb7d2ed2133a4 100644
(file)
--- a/
src/include/access/xact.h
+++ b/
src/include/access/xact.h
@@
-239,7
+239,7
@@
typedef struct xl_xact_subxacts
typedef struct xl_xact_relfilenodes
{
- int nrels; /* number of
subtransaction XID
s */
+ int nrels; /* number of
relation
s */
RelFileNode xnodes[FLEXIBLE_ARRAY_MEMBER];
} xl_xact_relfilenodes;
#define MinSizeOfXactRelfilenodes offsetof(xl_xact_relfilenodes, xnodes)