From: Álvaro Herrera Date: Tue, 4 Nov 2025 16:30:44 +0000 (+0100) Subject: Have psql's "\? variables" show csv_fieldsep X-Git-Tag: REL_18_1~29 X-Git-Url: http://git.postgresql.org/gitweb/static/main.js?a=commitdiff_plain;h=8864016118798ae4660bde7bee5cd6ee94ae6e95;p=postgresql.git Have psql's "\? variables" show csv_fieldsep Accidental omission in commit aa2ba50c2c13. There are too many lists of these variables ... Discussion: https://postgr.es/m/202511031738.eqaeaedpx5cr@alvherre.pgsql --- diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index ed00c36695e..9c15cb679fd 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -480,6 +480,9 @@ helpVariables(unsigned short int pager) " border style (number)\n"); HELP0(" columns\n" " target width for the wrapped format\n"); + HELPN(" csv_fieldsep\n" + " field separator for CSV output format (default \"%c\")\n", + DEFAULT_CSV_FIELD_SEP); HELP0(" expanded (or x)\n" " expanded output [on, off, auto]\n"); HELPN(" fieldsep\n"