Fix copy-pasto in description of pg_serial, and silence compiler warning
about uninitialized field you get on some compilers.
This commit is contained in:
parent
32896c40ca
commit
7202ad7b8d
@ -83,7 +83,7 @@ Item
|
|||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry><filename>pg_subtrans</></entry>
|
<entry><filename>pg_serial</></entry>
|
||||||
<entry>Subdirectory containing information about committed serializable transactions</entry>
|
<entry>Subdirectory containing information about committed serializable transactions</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
|
@ -3671,7 +3671,7 @@ CheckForSerializableConflictOut(const bool visible, const Relation relation,
|
|||||||
static void
|
static void
|
||||||
CheckTargetForConflictsIn(PREDICATELOCKTARGETTAG *targettag)
|
CheckTargetForConflictsIn(PREDICATELOCKTARGETTAG *targettag)
|
||||||
{
|
{
|
||||||
PREDICATELOCKTARGETTAG nexttargettag;
|
PREDICATELOCKTARGETTAG nexttargettag = { 0 };
|
||||||
PREDICATELOCKTARGETTAG thistargettag;
|
PREDICATELOCKTARGETTAG thistargettag;
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user