From 93b7ab5b4beee2f0cdef9d57d934e3a57638f5ca Mon Sep 17 00:00:00 2001 From: Álvaro Herrera Date: Tue, 4 Nov 2025 17:30:44 +0100 Subject: 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 --- src/bin/psql/help.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 6ae1a9940de..45d20ea57bc 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(" display_false\n" " set the string to be printed in place of a boolean 'false'\n"); HELP0(" display_true\n" -- cgit v1.2.3