Re: [Patch]Add tab completion for DELETE ... USING

Tatsuya Kawata <kawatatatsuya0913@gmail.com>

From: Tatsuya Kawata <kawatatatsuya0913@gmail.com>
To: Chao Li <li.evan.chao@gmail.com>
Cc: pgsql-hackers@postgresql.org
Date: 2025-12-27T00:49:48Z
Lists: pgsql-hackers

Attachments

Hi Chao-san,

Thank you very much for your review!

> Firs the first case:
> ```
> +# check DELETE ... USING completion
> +check_completion(
> +       "DELETE FROM tab1 USING my\t",
> +       qr/mytab/,
> +       "complete DELETE FROM tab USING with table name");
> ```
>
> Maybe just say “with tab”, because the rest test cases’ messages all say
“USING tab”.
I fixed it as you mentioned.
The updated v2 is attached.

Regards,
Tatsuya Kawata