diff options
author | Masahiko Sawada <msawada@postgresql.org> | 2025-06-11 11:44:25 -0700 |
---|---|---|
committer | Masahiko Sawada <msawada@postgresql.org> | 2025-06-11 11:44:25 -0700 |
commit | b774ad49336764aef063b9dbc1e7b7eb11c36e11 (patch) | |
tree | 00b7d071e70d028be62ad5db7b953bb8193b5d1d /src | |
parent | 7c319f54917faf564b660fe9027c4835a422bad6 (diff) | |
download | postgresql-b774ad49336764aef063b9dbc1e7b7eb11c36e11.tar.gz postgresql-b774ad49336764aef063b9dbc1e7b7eb11c36e11.zip |
Add tab completion for REJECT_LIMIT option.
This addresses an oversight in commit 4ac2a9bec, which introduced the
REJECT_LIMIT option to the COPY command.
Author: Atsushi Torikoshi <torikoshia@oss.nttdata.com>
Reviewed-by: Yugo Nagata <nagata@sraoss.co.jp>
Discussion: https://postgr.es/m/ac23e824d1d602f113a89c91ee56fb23@oss.nttdata.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/tab-complete.in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c index 620830feb9d..2c0b4f28c14 100644 --- a/src/bin/psql/tab-complete.in.c +++ b/src/bin/psql/tab-complete.in.c @@ -3289,7 +3289,7 @@ match_previous_words(int pattern_id, COMPLETE_WITH("FORMAT", "FREEZE", "DELIMITER", "NULL", "HEADER", "QUOTE", "ESCAPE", "FORCE_QUOTE", "FORCE_NOT_NULL", "FORCE_NULL", "ENCODING", "DEFAULT", - "ON_ERROR", "LOG_VERBOSITY"); + "ON_ERROR", "LOG_VERBOSITY", "REJECT_LIMIT"); /* Complete COPY <sth> FROM|TO filename WITH (FORMAT */ else if (Matches("COPY|\\copy", MatchAny, "FROM|TO", MatchAny, "WITH", "(", "FORMAT")) |