mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix silly thinko in ResetSequenceCaches.
Report from Kevin Hale Boyes.
This commit is contained in:
@ -1615,6 +1615,6 @@ ResetSequenceCaches(void)
|
|||||||
{
|
{
|
||||||
next = seqtab->next;
|
next = seqtab->next;
|
||||||
free(seqtab);
|
free(seqtab);
|
||||||
seqtab = seqtab->next;
|
seqtab = next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user