public inbox for [email protected]
help / color / mirror / Atom feedcreatefunction reference createprocedure
5+ messages / 3 participants
[nested] [flat]
* createfunction reference createprocedure
@ 2026-07-07 08:48 jian he <[email protected]>
2026-07-07 09:22 ` Re: createfunction reference createprocedure Laurenz Albe <[email protected]>
2026-07-07 09:41 ` Re: createfunction reference createprocedure Daniel Gustafsson <[email protected]>
0 siblings, 2 replies; 5+ messages in thread
From: jian he @ 2026-07-07 08:48 UTC (permalink / raw)
To: [email protected]
Hi.
https://www.postgresql.org/docs/devel/sql-createprocedure.html
````
See Also
ALTER PROCEDURE, DROP PROCEDURE, CALL, CREATE FUNCTION
````
https://www.postgresql.org/docs/devel/sql-createfunction.html
```
See Also
ALTER FUNCTION, DROP FUNCTION, GRANT, LOAD, REVOKE
```
We can make sql-createfunction.html ``See Also`` section reference
CREATE PROCEDURE.
What do you think?
^ permalink raw reply [nested|flat] 5+ messages in thread
* Re: createfunction reference createprocedure
2026-07-07 08:48 createfunction reference createprocedure jian he <[email protected]>
@ 2026-07-07 09:22 ` Laurenz Albe <[email protected]>
1 sibling, 0 replies; 5+ messages in thread
From: Laurenz Albe @ 2026-07-07 09:22 UTC (permalink / raw)
To: jian he <[email protected]>; [email protected]
On Tue, 2026-07-07 at 16:48 +0800, jian he wrote:
> https://www.postgresql.org/docs/devel/sql-createprocedure.html
>
> See Also
> ALTER PROCEDURE, DROP PROCEDURE, CALL, CREATE FUNCTION
>
> https://www.postgresql.org/docs/devel/sql-createfunction.html
>
> See Also
> ALTER FUNCTION, DROP FUNCTION, GRANT, LOAD, REVOKE
>
>
> We can make sql-createfunction.html ``See Also`` section reference
> CREATE PROCEDURE.
> What do you think?
I think that is a good idea.
Yours,
Laurenz Albe
^ permalink raw reply [nested|flat] 5+ messages in thread
* Re: createfunction reference createprocedure
2026-07-07 08:48 createfunction reference createprocedure jian he <[email protected]>
@ 2026-07-07 09:41 ` Daniel Gustafsson <[email protected]>
2026-07-07 11:47 ` Re: createfunction reference createprocedure jian he <[email protected]>
1 sibling, 1 reply; 5+ messages in thread
From: Daniel Gustafsson @ 2026-07-07 09:41 UTC (permalink / raw)
To: jian he <[email protected]>; +Cc: [email protected]
> On 7 Jul 2026, at 10:48, jian he <[email protected]> wrote:
> We can make sql-createfunction.html ``See Also`` section reference
> CREATE PROCEDURE. What do you think?
Seems reasonable, would you like to send a patch?
--
Daniel Gustafsson
^ permalink raw reply [nested|flat] 5+ messages in thread
* Re: createfunction reference createprocedure
2026-07-07 08:48 createfunction reference createprocedure jian he <[email protected]>
2026-07-07 09:41 ` Re: createfunction reference createprocedure Daniel Gustafsson <[email protected]>
@ 2026-07-07 11:47 ` jian he <[email protected]>
2026-07-07 14:02 ` Re: createfunction reference createprocedure Daniel Gustafsson <[email protected]>
0 siblings, 1 reply; 5+ messages in thread
From: jian he @ 2026-07-07 11:47 UTC (permalink / raw)
To: Daniel Gustafsson <[email protected]>; +Cc: [email protected]
On Tue, Jul 7, 2026 at 5:42 PM Daniel Gustafsson <[email protected]> wrote:
>
> > On 7 Jul 2026, at 10:48, jian he <[email protected]> wrote:
>
> > We can make sql-createfunction.html ``See Also`` section reference
> > CREATE PROCEDURE. What do you think?
>
> Seems reasonable, would you like to send a patch?
>
Please check the attached patch.
Attachments:
[text/x-patch] v1-0001-Reference-CREATE-PROCEDURE-in-CREATE-FUNCTION-documentation.patch (986B, ../../CACJufxGb6s1tdv=LBvBV-BecUwuXyThdBZULgzZpx7xfiMj02w@mail.gmail.com/2-v1-0001-Reference-CREATE-PROCEDURE-in-CREATE-FUNCTION-documentation.patch)
download | inline diff:
From b01af32437c63d9f4dfadb52ef7641cc1b520052 Mon Sep 17 00:00:00 2001
From: jian he <[email protected]>
Date: Tue, 7 Jul 2026 19:45:30 +0800
Subject: [PATCH v1 1/1] Reference CREATE PROCEDURE in CREATE FUNCTION
documentation
Update create_function.sgml to reference create_procedure.sgml.
Discussion: https://postgr.es/m/CACJufxFTi3ceVRJqWRr3L8GR5q%2BZhPCZw%3D1aDTaBGS1AugweFw%40mail.gmail.com
---
doc/src/sgml/ref/create_function.sgml | 1 +
1 file changed, 1 insertion(+)
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml
index 30bd4602f8d..5783d206f1e 100644
--- a/doc/src/sgml/ref/create_function.sgml
+++ b/doc/src/sgml/ref/create_function.sgml
@@ -937,6 +937,7 @@ COMMIT;
<member><xref linkend="sql-grant"/></member>
<member><xref linkend="sql-load"/></member>
<member><xref linkend="sql-revoke"/></member>
+ <member><xref linkend="sql-createprocedure"/></member>
</simplelist>
</refsect1>
--
2.34.1
^ permalink raw reply [nested|flat] 5+ messages in thread
* Re: createfunction reference createprocedure
2026-07-07 08:48 createfunction reference createprocedure jian he <[email protected]>
2026-07-07 09:41 ` Re: createfunction reference createprocedure Daniel Gustafsson <[email protected]>
2026-07-07 11:47 ` Re: createfunction reference createprocedure jian he <[email protected]>
@ 2026-07-07 14:02 ` Daniel Gustafsson <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Daniel Gustafsson @ 2026-07-07 14:02 UTC (permalink / raw)
To: jian he <[email protected]>; +Cc: PostgreSQL-documentation <[email protected]>
> On 7 Jul 2026, at 13:47, jian he <[email protected]> wrote:
>
> On Tue, Jul 7, 2026 at 5:42 PM Daniel Gustafsson <[email protected]> wrote:
>>
>>> On 7 Jul 2026, at 10:48, jian he <[email protected]> wrote:
>>
>>> We can make sql-createfunction.html ``See Also`` section reference
>>> CREATE PROCEDURE. What do you think?
>>
>> Seems reasonable, would you like to send a patch?
>
> Please check the attached patch.
Pushed with a small fix to maintain alphabetical order among the See Also
references.
--
Daniel Gustafsson
^ permalink raw reply [nested|flat] 5+ messages in thread
end of thread, other threads:[~2026-07-07 14:02 UTC | newest]
Thread overview: 5+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2026-07-07 08:48 createfunction reference createprocedure jian he <[email protected]>
2026-07-07 09:22 ` Laurenz Albe <[email protected]>
2026-07-07 09:41 ` Daniel Gustafsson <[email protected]>
2026-07-07 11:47 ` jian he <[email protected]>
2026-07-07 14:02 ` Daniel Gustafsson <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox