Commit 7202ad7b authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix copy-pasto in description of pg_serial, and silence compiler warning

about uninitialized field you get on some compilers.
parent 32896c40
......@@ -83,7 +83,7 @@ Item
</row>
<row>
<entry><filename>pg_subtrans</></entry>
<entry><filename>pg_serial</></entry>
<entry>Subdirectory containing information about committed serializable transactions</entry>
</row>
......
......@@ -3671,7 +3671,7 @@ CheckForSerializableConflictOut(const bool visible, const Relation relation,
static void
CheckTargetForConflictsIn(PREDICATELOCKTARGETTAG *targettag)
{
PREDICATELOCKTARGETTAG nexttargettag;
PREDICATELOCKTARGETTAG nexttargettag = { 0 };
PREDICATELOCKTARGETTAG thistargettag;
for (;;)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment