Skip to content

Commit 7202ad7

Browse files
committed
Fix copy-pasto in description of pg_serial, and silence compiler warning
about uninitialized field you get on some compilers.
1 parent 32896c4 commit 7202ad7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/src/sgml/storage.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Item
8383
</row>
8484

8585
<row>
86-
<entry><filename>pg_subtrans</></entry>
86+
<entry><filename>pg_serial</></entry>
8787
<entry>Subdirectory containing information about committed serializable transactions</entry>
8888
</row>
8989

src/backend/storage/lmgr/predicate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3671,7 +3671,7 @@ CheckForSerializableConflictOut(const bool visible, const Relation relation,
36713671
static void
36723672
CheckTargetForConflictsIn(PREDICATELOCKTARGETTAG *targettag)
36733673
{
3674-
PREDICATELOCKTARGETTAG nexttargettag;
3674+
PREDICATELOCKTARGETTAG nexttargettag = { 0 };
36753675
PREDICATELOCKTARGETTAG thistargettag;
36763676

36773677
for (;;)

0 commit comments

Comments
 (0)