Commit ae615716 authored by Robert Haas's avatar Robert Haas

Remove useless assertion.

Here, snapshot->xcnt is an unsigned type, so it will always be
non-negative.
parent 5850b20f
......@@ -1480,7 +1480,6 @@ SerializeSnapshot(Snapshot snapshot, char *start_address)
{
SerializedSnapshotData *serialized_snapshot;
Assert(snapshot->xcnt >= 0);
Assert(snapshot->subxcnt >= 0);
serialized_snapshot = (SerializedSnapshotData *) start_address;
......
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