pg_dump: Error message improvements
authorAlvaro Herrera <[email protected]>
Wed, 17 May 2023 17:13:08 +0000 (19:13 +0200)
committerAlvaro Herrera <[email protected]>
Wed, 17 May 2023 17:13:08 +0000 (19:13 +0200)
Remove spurious semicolon from one error message, and print the
offending value of a parameter reported as invalid in another.

src/bin/pg_dump/compress_zstd.c

index 001b4f15130642266b4f75c32f598a31e99b654c..9fbdc0a87dad576b0e81fa637455ae9ba9d01d0d 100644 (file)
@@ -63,7 +63,7 @@ _Zstd_CCtx_setParam_or_die(ZSTD_CStream *cstream,
 
        res = ZSTD_CCtx_setParameter(cstream, param, value);
        if (ZSTD_isError(res))
-               pg_fatal("could not set compression parameter: \"%s\": %s",
+               pg_fatal("could not set compression parameter \"%s\": %s",
                                 paramname, ZSTD_getErrorName(res));
 }
 
@@ -498,7 +498,7 @@ Zstd_open(const char *path, int fd, const char *mode,
                        pg_fatal("could not initialize compression library");
        }
        else
-               pg_fatal("unhandled mode");
+               pg_fatal("unhandled mode \"%s\"", mode);
 
        return true;
 }