Thread

Commits

  1. Fix tab completion of ALTER FUNCTION/PROCEDURE/ROUTINE ... SET SCHEMA.

  2. Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE.

  1. Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2022-10-27T15:08:01Z

    Hi,
    
    Tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE action was
    missing, this patch adds the tab completion for the same.
    
    Regards,
    Vignesh
    
  2. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Dong Wook Lee <sh95119@gmail.com> — 2022-10-28T02:32:20Z

    On Fri, Oct 28, 2022 at 12:08 AM vignesh C <vignesh21@gmail.com> wrote:
    >
    > Hi,
    >
    > Tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE action was
    > missing, this patch adds the tab completion for the same.
    >
    > Regards,
    > Vignesh
    
    Hi,
    I applied your patch and did some tests.
    Is it okay not to consider SET and RESET commands? (e.g ALTER FUNCTION)
    
    ---
    Regards,
    DongWook Lee.
    
    
    
    
  3. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2022-10-28T12:04:37Z

    On Fri, 28 Oct 2022 at 08:02, Dong Wook Lee <sh95119@gmail.com> wrote:
    >
    > On Fri, Oct 28, 2022 at 12:08 AM vignesh C <vignesh21@gmail.com> wrote:
    > >
    > > Hi,
    > >
    > > Tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE action was
    > > missing, this patch adds the tab completion for the same.
    > >
    > > Regards,
    > > Vignesh
    >
    > Hi,
    > I applied your patch and did some tests.
    > Is it okay not to consider SET and RESET commands? (e.g ALTER FUNCTION)
    
    Those also should be handled, attached v2 version includes the changes
    for the same.
    
    Regards,
    Vignesh
    
  4. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Michael Paquier <michael@paquier.xyz> — 2022-11-22T00:29:07Z

    On Fri, Oct 28, 2022 at 05:34:37PM +0530, vignesh C wrote:
    > Those also should be handled, attached v2 version includes the changes
    > for the same.
    
    The basic options supported by PROCEDURE are a subset of ROUTINE with a
    difference of COST, IMMUTABLE, [NOT] LEAKPROOF, ROWS, STABLE 
    and VOLATILE.
    
    The basic options supported by ROUTINE are a subset of FUNCTION with a
    difference of { CALLED | RETURNS NULL } ON NULL INPUT, STRICT and
    SUPPORT.  Is it worth refactoring a bit with common lists?
    
    +       "RESET", "RETURNS NULL ON NULL INPUT ", "ROWS",
    Extra space after INPUT here, that's easy to miss.
    --
    Michael
    
  5. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2022-11-22T06:18:58Z

    On Tue, 22 Nov 2022 at 05:59, Michael Paquier <michael@paquier.xyz> wrote:
    >
    > On Fri, Oct 28, 2022 at 05:34:37PM +0530, vignesh C wrote:
    > > Those also should be handled, attached v2 version includes the changes
    > > for the same.
    >
    > The basic options supported by PROCEDURE are a subset of ROUTINE with a
    > difference of COST, IMMUTABLE, [NOT] LEAKPROOF, ROWS, STABLE
    > and VOLATILE.
    >
    > The basic options supported by ROUTINE are a subset of FUNCTION with a
    > difference of { CALLED | RETURNS NULL } ON NULL INPUT, STRICT and
    > SUPPORT.  Is it worth refactoring a bit with common lists?
    
    Modified
    
    > +       "RESET", "RETURNS NULL ON NULL INPUT ", "ROWS",
    > Extra space after INPUT here, that's easy to miss.
    
    Good catch, the attached v3 patch has the changes for the same.
    
    Regards,
    Vignesh
    
  6. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Melih Mutlu <m.melihmutlu@gmail.com> — 2022-12-06T15:12:38Z

    Hi Vignesh,
    
    Looks like the patch needs a rebase.
    
    Also one little suggestion:
    
    + if (ends_with(prev_wd, ')'))
    > + COMPLETE_WITH(Alter_routine_options, "CALLED ON NULL INPUT",
    > +  "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT");
    
    
    What do you think about gathering FUNCTION options as you did with ROUTINE
    options.
    Something like the following would seem nicer, I think.
    
    #define Alter_function_options \
    > Alter_routine_options, "CALLED ON NULL INPUT", \
    
    "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT"
    
    
    Best,
    --
    Melih Mutlu
    Microsoft
    
  7. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2022-12-06T19:11:49Z

    On Tue, 6 Dec 2022 at 20:42, Melih Mutlu <m.melihmutlu@gmail.com> wrote:
    >
    > Hi Vignesh,
    >
    > Looks like the patch needs a rebase.
    
    Rebased
    
    > Also one little suggestion:
    >
    >> + if (ends_with(prev_wd, ')'))
    >> + COMPLETE_WITH(Alter_routine_options, "CALLED ON NULL INPUT",
    >> +  "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT");
    >
    >
    > What do you think about gathering FUNCTION options as you did with ROUTINE options.
    > Something like the following would seem nicer, I think.
    >
    >> #define Alter_function_options \
    >> Alter_routine_options, "CALLED ON NULL INPUT", \
    >>
    >> "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT"
    
    I did not make it as a macro for alter function options as it is used
    only in one place whereas the others were required in more than one
    place.
    The attached v4 patch is rebased on top of HEAD.
    
    Regards,
    Vignesh
    
  8. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Melih Mutlu <m.melihmutlu@gmail.com> — 2022-12-07T08:55:24Z

    Hi,
    
    vignesh C <vignesh21@gmail.com>, 6 Ara 2022 Sal, 22:12 tarihinde şunu yazdı:
    
    > I did not make it as a macro for alter function options as it is used
    > only in one place whereas the others were required in more than one
    > place.
    >
    
    Okay, makes sense.
    
    I tested the patch and it worked for me.
    
    Best,
    --
    Melih Mutlu
    Microsoft
    
  9. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Dean Rasheed <dean.a.rasheed@gmail.com> — 2023-01-05T12:52:30Z

    On Tue, 6 Dec 2022 at 19:12, vignesh C <vignesh21@gmail.com> wrote:
    >
    > On Tue, 6 Dec 2022 at 20:42, Melih Mutlu <m.melihmutlu@gmail.com> wrote:
    > >
    > > Also one little suggestion:
    > >
    > >> + if (ends_with(prev_wd, ')'))
    > >> + COMPLETE_WITH(Alter_routine_options, "CALLED ON NULL INPUT",
    > >> +  "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT");
    > >
    > > What do you think about gathering FUNCTION options as you did with ROUTINE options.
    > > Something like the following would seem nicer, I think.
    > >
    > >> #define Alter_function_options \
    > >> Alter_routine_options, "CALLED ON NULL INPUT", \
    > >> "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT"
    >
    > I did not make it as a macro for alter function options as it is used
    > only in one place whereas the others were required in more than one
    > place.
    
    My feeling is that having this macro somewhat improves readability and
    consistency between the 3 cases, so I think it's worth it, even if
    it's only used once.
    
    I think it slightly improves readability to keep all the arguments to
    Matches() on one line, and that seems to be the style elsewhere, even
    if that makes the line longer than 80 characters.
    
    Also in the interests of readability, I think it's slightly easier to
    follow if the "ALTER PROCEDURE <name> (...)" and "ALTER ROUTINE <name>
    (...)" cases are made to immediately follow the "ALTER FUNCTION <name>
    (...)" case, with the longer/more complex cases following on from
    that.
    
    That leads to the attached, which barring objections, I'll push shortly.
    
    While playing around with this, I noticed that the "... SET SCHEMA"
    case offers "FROM CURRENT" and "TO" as completions, which is
    incorrect. It should really offer to complete with a list of schemas.
    However, since that's a pre-existing bug in a different region of the
    code, I think it's best addressed in a separate patch, which probably
    ought to be back-patched.
    
    Regards,
    Dean
    
  10. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2023-01-06T02:37:58Z

    On Thu, 5 Jan 2023 at 18:22, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
    >
    > On Tue, 6 Dec 2022 at 19:12, vignesh C <vignesh21@gmail.com> wrote:
    > >
    > > On Tue, 6 Dec 2022 at 20:42, Melih Mutlu <m.melihmutlu@gmail.com> wrote:
    > > >
    > > > Also one little suggestion:
    > > >
    > > >> + if (ends_with(prev_wd, ')'))
    > > >> + COMPLETE_WITH(Alter_routine_options, "CALLED ON NULL INPUT",
    > > >> +  "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT");
    > > >
    > > > What do you think about gathering FUNCTION options as you did with ROUTINE options.
    > > > Something like the following would seem nicer, I think.
    > > >
    > > >> #define Alter_function_options \
    > > >> Alter_routine_options, "CALLED ON NULL INPUT", \
    > > >> "RETURNS NULL ON NULL INPUT", "STRICT", "SUPPORT"
    > >
    > > I did not make it as a macro for alter function options as it is used
    > > only in one place whereas the others were required in more than one
    > > place.
    >
    > My feeling is that having this macro somewhat improves readability and
    > consistency between the 3 cases, so I think it's worth it, even if
    > it's only used once.
    >
    > I think it slightly improves readability to keep all the arguments to
    > Matches() on one line, and that seems to be the style elsewhere, even
    > if that makes the line longer than 80 characters.
    >
    > Also in the interests of readability, I think it's slightly easier to
    > follow if the "ALTER PROCEDURE <name> (...)" and "ALTER ROUTINE <name>
    > (...)" cases are made to immediately follow the "ALTER FUNCTION <name>
    > (...)" case, with the longer/more complex cases following on from
    > that.
    >
    > That leads to the attached, which barring objections, I'll push shortly.
    
    The changes look good to me.
    
    Regards,
    Vignesh
    
    
    
    
  11. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Dean Rasheed <dean.a.rasheed@gmail.com> — 2023-01-06T10:03:22Z

    On Fri, 6 Jan 2023 at 02:38, vignesh C <vignesh21@gmail.com> wrote:
    >
    > On Thu, 5 Jan 2023 at 18:22, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
    > >
    > > That leads to the attached, which barring objections, I'll push shortly.
    >
    > The changes look good to me.
    >
    
    Pushed.
    
    Regards,
    Dean
    
    
    
    
  12. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    Dean Rasheed <dean.a.rasheed@gmail.com> — 2023-01-06T11:28:10Z

    On Thu, 5 Jan 2023 at 12:52, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
    >
    > While playing around with this, I noticed that the "... SET SCHEMA"
    > case offers "FROM CURRENT" and "TO" as completions, which is
    > incorrect. It should really offer to complete with a list of schemas.
    > However, since that's a pre-existing bug in a different region of the
    > code, I think it's best addressed in a separate patch, which probably
    > ought to be back-patched.
    >
    
    OK, I've pushed and back-patched a fix for that issue too.
    
    Regards,
    Dean
    
    
    
    
  13. Re: Improve tab completion for ALTER FUNCTION/PROCEDURE/ROUTINE

    vignesh C <vignesh21@gmail.com> — 2023-01-07T12:26:34Z

    On Fri, 6 Jan 2023 at 15:33, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
    >
    > On Fri, 6 Jan 2023 at 02:38, vignesh C <vignesh21@gmail.com> wrote:
    > >
    > > On Thu, 5 Jan 2023 at 18:22, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
    > > >
    > > > That leads to the attached, which barring objections, I'll push shortly.
    > >
    > > The changes look good to me.
    > >
    >
    > Pushed.
    
    Thanks for pushing this.
    
    Regards,
    Vignesh