Improve WIN32 waiting logic in psql's \watch command.
commitf07a20c8a3b15e71d3cbfcfed0600956042cbe74
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 8 Mar 2024 17:07:35 +0000 (8 12:07 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 8 Mar 2024 17:07:35 +0000 (8 12:07 -0500)
tree3f232126b9cd8947b67ce73156a2f1d564447c43
parent270af6f0df764d326e1a7355f4ce10dc73b05dac
Improve WIN32 waiting logic in psql's \watch command.

do_watch had some leftover logic for enabling siglongjmp out of
waiting for input.  That's never done anything on Windows (cf.
psql_cancel_callback), and do_watch no longer relies on it for
non-Windows, so let's drop it.

Also, when the user cancels \watch by pressing ^C, the Windows
code would run the query one more time before exiting.  That doesn't
seem very desirable, and it's not what happens on other platforms.
Use the "done" flag similarly to non-Windows to avoid the extra query
execution.

Yugo Nagata (with minor fixes by me)

Discussion: https://postgr.es/m/20240305220552.85fd4afd6b6b8103bf4fe3d0@sraoss.co.jp
src/bin/psql/command.c