Widen buffer for headers in psql's \watch command.

This is to make sure there's enough room for translated versions of
the message.  HEAD's already addressed this issue, but back-patch a
simple increase in the array size.

Discussion: <20160612145532.GA22965@postgresql.kr>
This commit is contained in:
Tom Lane 2016-06-15 19:35:39 -04:00
parent e5bdaa127b
commit 455812da48
1 changed files with 1 additions and 1 deletions

View File

@ -2943,7 +2943,7 @@ static bool
do_watch(PQExpBuffer query_buf, long sleep)
{
printQueryOpt myopt = pset.popt;
char title[50];
char title[256];
if (!query_buf || query_buf->len <= 0)
{