agora inbox for [email protected]help / color / mirror / Atom feed
[PATCH v5 1/5] Export textarray_to_stringlist 7+ messages / 2 participants [nested] [flat]
* [PATCH v5 1/5] Export textarray_to_stringlist @ 2021-02-05 12:49 Japin Li <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Japin Li @ 2021-02-05 12:49 UTC (permalink / raw) --- src/backend/catalog/pg_subscription.c | 3 +-- src/include/catalog/pg_subscription.h | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/backend/catalog/pg_subscription.c b/src/backend/catalog/pg_subscription.c index c32fc8137d..e01c22c604 100644 --- a/src/backend/catalog/pg_subscription.c +++ b/src/backend/catalog/pg_subscription.c @@ -34,7 +34,6 @@ #include "utils/rel.h" #include "utils/syscache.h" -static List *textarray_to_stringlist(ArrayType *textarray); /* * Fetch the subscription from the syscache. @@ -210,7 +209,7 @@ get_subscription_name(Oid subid, bool missing_ok) * * Note: the resulting list of strings is pallocated here. */ -static List * +List * textarray_to_stringlist(ArrayType *textarray) { Datum *elems; diff --git a/src/include/catalog/pg_subscription.h b/src/include/catalog/pg_subscription.h index a5d6efdf20..3fc558c7c5 100644 --- a/src/include/catalog/pg_subscription.h +++ b/src/include/catalog/pg_subscription.h @@ -21,6 +21,7 @@ #include "catalog/pg_subscription_d.h" #include "nodes/pg_list.h" +#include "utils/array.h" /* ---------------- * pg_subscription definition. cpp turns this into @@ -101,6 +102,7 @@ extern Subscription *GetSubscription(Oid subid, bool missing_ok); extern void FreeSubscription(Subscription *sub); extern Oid get_subscription_oid(const char *subname, bool missing_ok); extern char *get_subscription_name(Oid subid, bool missing_ok); +extern List *textarray_to_stringlist(ArrayType *textarray); extern int CountDBSubscriptions(Oid dbid); -- 2.25.1 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=v5-0002-Introduce-a-new-syntax-to-add-drop-publications.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v4 05/12] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_/OOXZvOwbpccKfGOtE9/SwX6 Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v4-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v5 05/14] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_//gBZFZYGWm7urqUgDbu6PSe Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v5-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v6 05/15] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_/74urtnrsBSymuH7bJczNOGS Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v6-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v7 05/16] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_/VSGM3xNEmY7iJyL2wuWRCjV Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v7-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v2 05/11] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_/RgO6TscyR9fMvkEm1k5N=yu Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v2-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
* [PATCH v3 05/11] Improve sentences in overview of system configuration parameters @ 2023-09-25 20:32 Karl O. Pinc <[email protected]> 0 siblings, 0 replies; 7+ messages in thread From: Karl O. Pinc @ 2023-09-25 20:32 UTC (permalink / raw) Get rid of "we" wording. Remove extra words in sentences. Line break after end of each sentence to ease future patch reading. --- doc/src/sgml/config.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6bc1b215db..97f9838bfb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -10,9 +10,10 @@ <para> There are many configuration parameters that affect the behavior of - the database system. In the first section of this chapter we - describe how to interact with configuration parameters. The subsequent sections - discuss each parameter in detail. + the database system. + The first section of this chapter describes how to interact with + configuration parameters. + Subsequent sections discuss each parameter in detail. </para> <sect1 id="config-setting"> -- 2.30.2 --MP_/.arW0LC=Yi8JO9BRih4YlyS Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=v3-0006-Provide-examples-of-listing-all-settings.patch ^ permalink raw reply [nested|flat] 7+ messages in thread
end of thread, other threads:[~2023-09-25 20:32 UTC | newest] Thread overview: 7+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2021-02-05 12:49 [PATCH v5 1/5] Export textarray_to_stringlist Japin Li <[email protected]> 2023-09-25 20:32 [PATCH v4 05/12] Improve sentences in overview of system configuration parameters Karl O. Pinc <[email protected]> 2023-09-25 20:32 [PATCH v5 05/14] Improve sentences in overview of system configuration parameters Karl O. Pinc <[email protected]> 2023-09-25 20:32 [PATCH v6 05/15] Improve sentences in overview of system configuration parameters Karl O. Pinc <[email protected]> 2023-09-25 20:32 [PATCH v7 05/16] Improve sentences in overview of system configuration parameters Karl O. Pinc <[email protected]> 2023-09-25 20:32 [PATCH v2 05/11] Improve sentences in overview of system configuration parameters Karl O. Pinc <[email protected]> 2023-09-25 20:32 [PATCH v3 05/11] Improve sentences in overview of system configuration parameters Karl O. Pinc <[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