psql: Fix tab completion for VACUUM option values.

Masahiko Sawada <msawada@postgresql.org>

Commit: 4e13769004c8b2a337d24060e15f23684d3df98b
Author: Masahiko Sawada <msawada@postgresql.org>
Date: 2025-12-24T21:55:32Z
Releases: 18.2
psql: Fix tab completion for VACUUM option values.

Commit 8a3e4011 introduced tab completion for the ONLY option of
VACUUM and ANALYZE, along with some code simplification using
MatchAnyN. However, it caused a regression in tab completion for
VACUUM option values. For example, neither ON nor OFF was suggested
after "VACUUM (VERBOSE". In addition, the ONLY keyword was not
suggested immediately after a completed option list.

Backpatch to v18.

Author: Yugo Nagata <nagata@sraoss.co.jp>
Discussion: https://postgr.es/m/20251223021509.19bba68ecbbc70c9f983c2b4@sraoss.co.jp
Backpatch-through: 18

Files

PathChange+/−
src/bin/psql/tab-complete.in.c modified +24 −18

Discussion