Skip to content

Commit 4b19530

Browse files
committed
Make \watch respect the user's \pset null setting.
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.
1 parent 75bac64 commit 4b19530

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/bin/psql/command.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2585,7 +2585,6 @@ do_watch(PQExpBuffer query_buf, long sleep)
25852585
* Set up rendering options, in particular, disable the pager, because
25862586
* nobody wants to be prompted while watching the output of 'watch'.
25872587
*/
2588-
myopt.nullPrint = NULL;
25892588
myopt.topt.pager = 0;
25902589

25912590
for (;;)

0 commit comments

Comments
 (0)