psql: Fix tab completion for VACUUM option values.

Masahiko Sawada <msawada@postgresql.org>

Commit: c5c808f9b30b098421ad9f255954c4b16d121ab4
Author: Masahiko Sawada <msawada@postgresql.org>
Date: 2025-12-24T21:55:29Z
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