]> granicus.if.org Git - postgresql/commitdiff
Fix error message in pre_sync_fname.
authorRobert Haas <rhaas@postgresql.org>
Mon, 18 May 2015 16:53:09 +0000 (12:53 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 18 May 2015 17:17:43 +0000 (13:17 -0400)
The old one didn't include %m anywhere, and required extra
translation.

Report by Peter Eisentraut. Fix by me. Review by Tom Lane.

src/backend/storage/file/fd.c

index de71368366dc26e463dcd1fcd425c90ab12c88f8..89b108356062296b08419b472dd5907d16e512c6 100644 (file)
@@ -2026,7 +2026,7 @@ pre_sync_fname(char *fname, bool isdir)
 
        if (fd < 0)
                ereport(FATAL,
-                               (errmsg("could not open file \"%s\" before fsync",
+                               (errmsg("could not open file \"%s\": %m",
                                                fname)));
 
        pg_flush_data(fd, 0, 0);