aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2016-06-23 16:10:15 -0400
committerAndrew Dunstan <andrew@dunslane.net>2016-06-23 16:12:47 -0400
commitb4e6123bf604ed316b03629b881fbf67edcb9725 (patch)
tree27c5029760a047c5ecfdb2cb66835a76a2981160
parentf2c28bb1f2fee6fa33d2d6d4316b3f1d499543a4 (diff)
downloadpostgresql-b4e6123bf604ed316b03629b881fbf67edcb9725.tar.gz
postgresql-b4e6123bf604ed316b03629b881fbf67edcb9725.zip
Add tab completion for pager_min_lines to psql.
This was inadvertantly omitted from commit 7655f4ccea570d57c4d473cd66b755c03c904942. Mea culpa. Backpatched to 9.5 where pager_min_lines was introduced.
-rw-r--r--src/bin/psql/tab-complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 73fc349bf02..e46367252fe 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3858,8 +3858,8 @@ psql_completion(const char *text, int start, int end)
static const char *const my_list[] =
{"border", "columns", "expanded", "fieldsep", "fieldsep_zero",
"footer", "format", "linestyle", "null", "numericlocale",
- "pager", "recordsep", "recordsep_zero", "tableattr", "title",
- "tuples_only", "unicode_border_linestyle",
+ "pager", "pager_min_lines", "recordsep", "recordsep_zero",
+ "tableattr", "title", "tuples_only", "unicode_border_linestyle",
"unicode_column_linestyle", "unicode_header_linestyle", NULL};
COMPLETE_WITH_LIST_CS(my_list);