1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Have psql's "\? variables" show csv_fieldsep

Accidental omission in commit aa2ba50c2c.  There are too many lists of
these variables ...

Discussion: https://postgr.es/m/202511031738.eqaeaedpx5cr@alvherre.pgsql
This commit is contained in:
Álvaro Herrera
2025-11-04 17:30:44 +01:00
parent 040cc5f3c7
commit 93b7ab5b4b

View File

@@ -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"