Re: [PATCH] DROP tab completion

2021-11-30 Thread Michael Paquier
On Tue, Nov 30, 2021 at 03:17:07PM +, Asif Rehman wrote: > The patch applies cleanly and the functionality seems to work well. (master > e7122548a3) > > The new status of this patch is: Ready for Committer + else if (Matches("DROP", "MATERIALIZED", "VIEW", MatchAny)) + COMPLETE_WITH(

Re: [PATCH] DROP tab completion

2021-11-30 Thread Asif Rehman
The following review has been posted through the commitfest application: make installcheck-world: tested, passed Implements feature: tested, passed Spec compliant: tested, passed Documentation:not tested The patch applies cleanly and the functionality seems to work wel

[PATCH] DROP tab completion

2021-11-29 Thread Ken Kato
Hi hackers, This time, I went through DROP tab completions and noticed some tab completions missing for the following commands: -DROP MATERIALIZED VIEW, DROP OWNED BY, DROP POLICY: missing [CASCADE|RESTRICT] at the end -DROP TRANSFORM: no completions after TRANSFORM I made a patch for this. B