From: Tom Lane Date: Wed, 15 Jun 2016 23:35:39 +0000 (-0400) Subject: Widen buffer for headers in psql's \watch command. X-Git-Tag: REL9_4_9~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01384f7bd55f220107eca5f96986aaf98ec061af;p=postgresql 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> --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index fc02c66e1f..d130d44aba 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2805,7 +2805,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) {