]> granicus.if.org Git - postgresql/commitdiff
Make \watch respect the user's \pset null setting.
authorFujii Masao <fujii@postgresql.org>
Thu, 27 Nov 2014 17:42:43 +0000 (02:42 +0900)
committerFujii Masao <fujii@postgresql.org>
Thu, 27 Nov 2014 17:44:14 +0000 (02:44 +0900)
Previously \watch always ignored the user's \pset null setting.
\pset null setting should be ignored for \d and similar queries.
For those, the code can reasonably have an opinion about what
the presentation should be like, since it knows what SQL query
it's issuing. This argument surely doesn't apply to \watch,
so this commit makes \watch use the user's \pset null setting.

Back-patch to 9.3 where \watch was added.

src/bin/psql/command.c

index 9b7f241fd40bc21d18bae57b600bfa9fd1474aed..2e8935990812634ff821ded548eabf470dfe2f03 100644 (file)
@@ -2754,7 +2754,6 @@ do_watch(PQExpBuffer query_buf, long sleep)
         * Set up rendering options, in particular, disable the pager, because
         * nobody wants to be prompted while watching the output of 'watch'.
         */
-       myopt.nullPrint = NULL;
        myopt.topt.pager = 0;
 
        for (;;)