Fix the error message when failing to restore the snapshot.

The SnapBuildRestoreContents() used a const value in the error message to
indicate the size in bytes it was expecting to read from the serialized
snapshot file. Fix it by reporting the size that was actually passed.

Author: Hou Zhijie
Reviewed-by: Amit Kapila
Backpatch-through: 16
Discussion: http://postgr.es/m/OS0PR01MB5716D408364F7DF32221C08D941FA@OS0PR01MB5716.jpnprd01.prod.outlook.com
pull/150/head
Amit Kapila 2 years ago
parent 8179d1bdf7
commit 13e2665df3
  1. 2
      src/backend/replication/logical/snapbuild.c

@ -2034,7 +2034,7 @@ SnapBuildRestoreContents(int fd, char *dest, Size size, const char *path)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_DATA_CORRUPTED), (errcode(ERRCODE_DATA_CORRUPTED),
errmsg("could not read file \"%s\": read %d of %zu", errmsg("could not read file \"%s\": read %d of %zu",
path, readBytes, sizeof(SnapBuild)))); path, readBytes, size)));
} }
} }

Loading…
Cancel
Save