Thread

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

    Tatsuya Kawata <kawatatatsuya0913@gmail.com> — 2025-12-27T00:49:48Z

    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