public inbox for [email protected]help / color / mirror / Atom feed
Re: DOCS - Add introductory paragraph to Getting Started chapter 15+ messages / 9 participants [nested] [flat]
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-02-19 16:14 David G. Johnston <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: David G. Johnston @ 2026-02-19 16:14 UTC (permalink / raw) To: Philip Alger <[email protected]>; +Cc: Dragos Andriciuc <[email protected]>; Andreas Karlsson <[email protected]>; pgsql-hackers On Thu, Feb 19, 2026 at 6:51 AM Philip Alger <[email protected]> wrote: > > > On Thu, Feb 19, 2026 at 3:58 AM Dragos Andriciuc < > [email protected]> wrote: > >> Thanks for pointing that out. The intention was to add two paragraphs and >> it is now corrected to use >> two separate <para> tags. Attached is v2 of the patch. >> >> I have verified that the docs build and render correctly in HTML locally. >> >>> >>> > Hello, > > It's always good to add more documentation. I wouldn't consider two single > sentences as separate paragraphs though. > > However, I think these sentences can be combined into one. > > For example: > > This chapter provides a practical introduction to > <productname>PostgreSQL</productname> > by guiding you through software installation, basic architectural > concepts, and how to create and access > your first database. > > I think this version combines the two essentially. > > All that does is put the existing Table of Contents into paragraph form. I'd keep the second sentence and let the ToC speak for itself personally. Or put a bit more effort into saying something about those topics that a ToC header cannot convey. I'm fine with the status quo though, at least compared to the proposed. Probably should make 'server', 'client' and 'database' links to the glossary - though the architecture page will also provide detail if they perform a linear read. Looking at this more critically, why does installation come before architecture? I would expect architecture to include information that improves understanding what is being installed and why. Or, more generally, theory before practice. Suggestion: <para> [First] This chapter provides a brief introduction to the concepts and terminology employed in PostgreSQL's design. [Then] It also walks you through getting a server and client installed on your machine and ensuring it is functioning by creating a new database and connecting to it via the command line client. </para> David J. ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-02-19 17:04 Dragos Andriciuc <[email protected]> parent: David G. Johnston <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: Dragos Andriciuc @ 2026-02-19 17:04 UTC (permalink / raw) To: David G. Johnston <[email protected]>; Philip Alger <[email protected]>; +Cc: Andreas Karlsson <[email protected]>; pgsql-hackers Hello, The chapter currently opens directly with a list of subsections and no introductory text. This differs from the structure used in other chapters, but I understand the preference for avoiding redundancy with the ToC. I've revised the introduction to simplify the structure and avoid restating the table of contents too directly, merging the two sentences into one. Attached is v3. ________________________________ From: David G. Johnston <[email protected]> Sent: Thursday, February 19, 2026 6:14 PM To: Philip Alger <[email protected]> Cc: Dragos Andriciuc <[email protected]>; Andreas Karlsson <[email protected]>; [email protected] <[email protected]> Subject: Re: DOCS - Add introductory paragraph to Getting Started chapter On Thu, Feb 19, 2026 at 6:51 AM Philip Alger <[email protected]<mailto:[email protected]>> wrote: On Thu, Feb 19, 2026 at 3:58 AM Dragos Andriciuc <[email protected]<mailto:[email protected]>> wrote: Thanks for pointing that out. The intention was to add two paragraphs and it is now corrected to use two separate <para> tags. Attached is v2 of the patch. I have verified that the docs build and render correctly in HTML locally. Hello, It's always good to add more documentation. I wouldn't consider two single sentences as separate paragraphs though. However, I think these sentences can be combined into one. For example: This chapter provides a practical introduction to <productname>PostgreSQL</productname> by guiding you through software installation, basic architectural concepts, and how to create and access your first database. I think this version combines the two essentially. All that does is put the existing Table of Contents into paragraph form. I'd keep the second sentence and let the ToC speak for itself personally. Or put a bit more effort into saying something about those topics that a ToC header cannot convey. I'm fine with the status quo though, at least compared to the proposed. Probably should make 'server', 'client' and 'database' links to the glossary - though the architecture page will also provide detail if they perform a linear read. Looking at this more critically, why does installation come before architecture? I would expect architecture to include information that improves understanding what is being installed and why. Or, more generally, theory before practice. Suggestion: <para> [First] This chapter provides a brief introduction to the concepts and terminology employed in PostgreSQL's design. [Then] It also walks you through getting a server and client installed on your machine and ensuring it is functioning by creating a new database and connecting to it via the command line client. </para> David J. Attachments: [application/octet-stream] v3-0001-Add-introductory-paragraph-to-Getting-Started-chapter.patch (947B, 3-v3-0001-Add-introductory-paragraph-to-Getting-Started-chapter.patch) download | inline diff: From ee4beb3239343a62cba9a49a3a4c5302d256b30c Mon Sep 17 00:00:00 2001 From: Dragos Andriciuc <[email protected]> Date: Tue, 17 Feb 2026 12:25:03 +0200 Subject: [PATCH] Add introductory paragraph to Getting Started chapter v3: - Reword paragraph one to include second paragraph information --- doc/src/sgml/start.sgml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 0263a700591..4e28db1b450 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -3,6 +3,12 @@ <chapter id="tutorial-start"> <title>Getting Started</title> + <para> + This chapter provides a brief introduction to <productname>PostgreSQL</productname>, + introducing core concepts and guiding you through installation and the + basic steps of creating and accessing a database. + </para> + <sect1 id="tutorial-install"> <title>Installation</title> -- 2.43.0 ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-02-26 08:48 Chao Li <[email protected]> parent: Dragos Andriciuc <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: Chao Li @ 2026-02-26 08:48 UTC (permalink / raw) To: Dragos Andriciuc <[email protected]>; +Cc: David G. Johnston <[email protected]>; Philip Alger <[email protected]>; Andreas Karlsson <[email protected]>; pgsql-hackers > On Feb 20, 2026, at 01:04, Dragos Andriciuc <[email protected]> wrote: > > Hello, > > The chapter currently opens directly with a list of subsections and no introductory text. > > This differs from the structure used in other chapters, but I understand the preference for avoiding redundancy with the ToC. > > I've revised the introduction to simplify the structure and avoid restating the table of contents too directly, merging the two sentences into one. > > Attached is v3. > > > > From: David G. Johnston <[email protected]> > Sent: Thursday, February 19, 2026 6:14 PM > To: Philip Alger <[email protected]> > Cc: Dragos Andriciuc <[email protected]>; Andreas Karlsson <[email protected]>; [email protected] <[email protected]> > Subject: Re: DOCS - Add introductory paragraph to Getting Started chapter > On Thu, Feb 19, 2026 at 6:51 AM Philip Alger <[email protected]> wrote: > > > On Thu, Feb 19, 2026 at 3:58 AM Dragos Andriciuc <[email protected]> wrote: > Thanks for pointing that out. The intention was to add two paragraphs and it is now corrected to use > two separate <para> tags. Attached is v2 of the patch. > > I have verified that the docs build and render correctly in HTML locally. > > > Hello, > > It's always good to add more documentation. I wouldn't consider two single sentences as separate paragraphs though. > > However, I think these sentences can be combined into one. > > For example: > > This chapter provides a practical introduction to <productname>PostgreSQL</productname> > by guiding you through software installation, basic architectural concepts, and how to create and access > your first database. > > I think this version combines the two essentially. > > All that does is put the existing Table of Contents into paragraph form. I'd keep the second sentence and let the ToC speak for itself personally. Or put a bit more effort into saying something about those topics that a ToC header cannot convey. I'm fine with the status quo though, at least compared to the proposed. > > Probably should make 'server', 'client' and 'database' links to the glossary - though the architecture page will also provide detail if they perform a linear read. > > Looking at this more critically, why does installation come before architecture? I would expect architecture to include information that improves understanding what is being installed and why. Or, more generally, theory before practice. > > Suggestion: > <para> > [First] This chapter provides a brief introduction to the concepts and terminology employed in PostgreSQL's design. [Then] It also walks you through getting a server and client installed on your machine and ensuring it is functioning by creating a new database and connecting to it via the command line client. > </para> > > David J. > > > <v3-0001-Add-introductory-paragraph-to-Getting-Started-chapter.patch> V3 seems very polished. I agree the new paragraph is a helpful improvement for new doc readers. Best regards, -- Chao Li (Evan) HighGo Software Co., Ltd. https://www.highgo.com/ ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-02-27 16:28 David G. Johnston <[email protected]> parent: Chao Li <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: David G. Johnston @ 2026-02-27 16:28 UTC (permalink / raw) To: Chao Li <[email protected]>; +Cc: Dragos Andriciuc <[email protected]>; Philip Alger <[email protected]>; Andreas Karlsson <[email protected]>; pgsql-hackers On Thu, Feb 26, 2026 at 1:49 AM Chao Li <[email protected]> wrote: > > > <v3-0001-Add-introductory-paragraph-to-Getting-Started-chapter.patch> > > V3 seems very polished. I agree the new paragraph is a helpful improvement > for new doc readers. > > Works for me. David J. ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-08 01:05 Dapeng Wang <[email protected]> 0 siblings, 2 replies; 15+ messages in thread From: Dapeng Wang @ 2026-04-08 01:05 UTC (permalink / raw) To: [email protected] Hi, Following up on Tom's suggestion that Chapters 2 and 3 of the tutorial likewise lack introductory paragraphs, I've attached a patch that adds them. Chapter 2 (The SQL Language) gets a paragraph summarizing tables, queries, joins, aggregates, and data modification. Chapter 3 (Advanced Features) gets a paragraph summarizing views, foreign keys, transactions, window functions, and inheritance. Regards, Dapeng Wang Attachments: [application/octet-stream] 0001-doc-add-introductory-paragraphs-to-tutorial-Chapters.patch (1.6K, 3-0001-doc-add-introductory-paragraphs-to-tutorial-Chapters.patch) download | inline diff: From fd0b233c6b41a5bac0c9e3b1f4018d5da3f3878e Mon Sep 17 00:00:00 2001 From: wangdapeng <[email protected]> Date: Wed, 8 Apr 2026 08:56:37 +0800 Subject: [PATCH] doc: add introductory paragraphs to tutorial Chapters 2 and 3 --- doc/src/sgml/advanced.sgml | 8 ++++++++ doc/src/sgml/query.sgml | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/doc/src/sgml/advanced.sgml b/doc/src/sgml/advanced.sgml index e15a332..c0c6d12 100644 --- a/doc/src/sgml/advanced.sgml +++ b/doc/src/sgml/advanced.sgml @@ -3,6 +3,14 @@ <chapter id="tutorial-advanced"> <title>Advanced Features</title> + <para> + This chapter builds on the basics covered earlier and introduces + several advanced <acronym>SQL</acronym> features in + <productname>PostgreSQL</productname>, including views, foreign keys, + transactions, window functions, and inheritance. + </para> + + <sect1 id="tutorial-advanced-intro"> <title>Introduction</title> diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml index b190f28..1c8b6ac 100644 --- a/doc/src/sgml/query.sgml +++ b/doc/src/sgml/query.sgml @@ -3,6 +3,13 @@ <chapter id="tutorial-sql"> <title>The <acronym>SQL</acronym> Language</title> + <para> + This chapter introduces fundamental <acronym>SQL</acronym> operations + in <productname>PostgreSQL</productname>, including creating tables, + populating them with data, and querying them. It also covers joins + between tables, aggregate functions, and how to update and delete data. + </para> + <sect1 id="tutorial-sql-intro"> <title>Introduction</title> -- 2.46.2.windows.1 ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-09 12:55 Andreas Karlsson <[email protected]> parent: Dapeng Wang <[email protected]> 1 sibling, 1 reply; 15+ messages in thread From: Andreas Karlsson @ 2026-04-09 12:55 UTC (permalink / raw) To: Dapeng Wang <[email protected]>; [email protected] On 4/8/26 3:05 AM, Dapeng Wang wrote: > Following up on Tom's suggestion that Chapters 2 and 3 of the > tutorial likewise lack introductory paragraphs, I've attached a > patch that adds them. Thanks for the contribution! In the future use "Reply all" and figure out why your email client did not add a proper Reply-To header. -- Andreas Karlsson Percona ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-10 00:36 Dapeng Wang <[email protected]> parent: Andreas Karlsson <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: Dapeng Wang @ 2026-04-10 00:36 UTC (permalink / raw) To: Andreas Karlsson <[email protected]>; +Cc: [email protected] Thanks Andreas! Noted - I didn't have the original thread in my mailbox at the time, but I'm subscribed now so future replies will thread properly. Regards, Dapeng Wang Andreas Karlsson <[email protected]> 于2026年4月9日周四 20:55写道: > On 4/8/26 3:05 AM, Dapeng Wang wrote: > > Following up on Tom's suggestion that Chapters 2 and 3 of the > > tutorial likewise lack introductory paragraphs, I've attached a > > patch that adds them. > Thanks for the contribution! > > In the future use "Reply all" and figure out why your email client did > not add a proper Reply-To header. > > -- > Andreas Karlsson > Percona > > ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-10 00:40 Andreas Karlsson <[email protected]> parent: Dapeng Wang <[email protected]> 0 siblings, 2 replies; 15+ messages in thread From: Andreas Karlsson @ 2026-04-10 00:40 UTC (permalink / raw) To: Dapeng Wang <[email protected]>; +Cc: [email protected] On 4/10/26 2:36 AM, Dapeng Wang wrote: > Thanks Andreas! Noted - I didn't have the original thread > in my mailbox at the time, but I'm subscribed now so future > replies will thread properly. I see! Then the general recommendation is to use the re-send email button in our mailing list archives. I know it was buggy some time ago but I think it has been fixed now. Andreas ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-10 00:47 Dapeng Wang <[email protected]> parent: Andreas Karlsson <[email protected]> 1 sibling, 0 replies; 15+ messages in thread From: Dapeng Wang @ 2026-04-10 00:47 UTC (permalink / raw) To: Andreas Karlsson <[email protected]>; +Cc: [email protected] Good to know, thanks! I'll use the resend email button next time. Andreas Karlsson <[email protected]> 于2026年4月10日周五 08:40写道: > On 4/10/26 2:36 AM, Dapeng Wang wrote: > > Thanks Andreas! Noted - I didn't have the original thread > > in my mailbox at the time, but I'm subscribed now so future > > replies will thread properly. > > I see! Then the general recommendation is to use the re-send email > button in our mailing list archives. I know it was buggy some time ago > but I think it has been fixed now. > > Andreas > > ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-10 00:47 Tom Lane <[email protected]> parent: Andreas Karlsson <[email protected]> 1 sibling, 1 reply; 15+ messages in thread From: Tom Lane @ 2026-04-10 00:47 UTC (permalink / raw) To: Andreas Karlsson <[email protected]>; +Cc: Dapeng Wang <[email protected]>; [email protected] Andreas Karlsson <[email protected]> writes: > On 4/10/26 2:36 AM, Dapeng Wang wrote: >> Thanks Andreas! Noted - I didn't have the original thread >> in my mailbox at the time, but I'm subscribed now so future >> replies will thread properly. > I see! Then the general recommendation is to use the re-send email > button in our mailing list archives. I know it was buggy some time ago > but I think it has been fixed now. Yeah, I use that all the time when I want to reply to some old thread that I no longer have locally. It's been flaky once or twice for me, but normally it works fine. A more pressing problem is that this iteration of the thread isn't attached to the CF entry; you need to do that so that it shows up as having current traffic. Right now, https://commitfest.postgresql.org/patch/6506/ still shows the 19-Feb patch as current. regards, tom lane ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-10 01:03 Dapeng Wang <[email protected]> parent: Tom Lane <[email protected]> 0 siblings, 0 replies; 15+ messages in thread From: Dapeng Wang @ 2026-04-10 01:03 UTC (permalink / raw) To: Tom Lane <[email protected]>; +Cc: Andreas Karlsson <[email protected]>; [email protected] Done - I've attached the new thread to the CF entry. Regards, Dapeng Wang Tom Lane <[email protected]> 于2026年4月10日周五 08:47写道: > Andreas Karlsson <[email protected]> writes: > > On 4/10/26 2:36 AM, Dapeng Wang wrote: > >> Thanks Andreas! Noted - I didn't have the original thread > >> in my mailbox at the time, but I'm subscribed now so future > >> replies will thread properly. > > > I see! Then the general recommendation is to use the re-send email > > button in our mailing list archives. I know it was buggy some time ago > > but I think it has been fixed now. > > Yeah, I use that all the time when I want to reply to some old > thread that I no longer have locally. It's been flaky once or > twice for me, but normally it works fine. > > A more pressing problem is that this iteration of the thread > isn't attached to the CF entry; you need to do that so that > it shows up as having current traffic. Right now, > > https://commitfest.postgresql.org/patch/6506/ > > still shows the 19-Feb patch as current. > > regards, tom lane > ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-15 18:03 Peter Eisentraut <[email protected]> parent: Dapeng Wang <[email protected]> 1 sibling, 0 replies; 15+ messages in thread From: Peter Eisentraut @ 2026-04-15 18:03 UTC (permalink / raw) To: Dapeng Wang <[email protected]>; [email protected] On 08.04.26 03:05, Dapeng Wang wrote: > Following up on Tom's suggestion that Chapters 2 and 3 of the > tutorial likewise lack introductory paragraphs, I've attached a > patch that adds them. In each of these chapters, the first section is titled "Introduction" and the first sentence introduces the chapter. So the text you are proposing to add here appears to be redundant with that. ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: DOCS - Add introductory paragraph to Getting Started chapter @ 2026-04-22 09:45 Dragos Andriciuc <[email protected]> parent: David G. Johnston <[email protected]> 0 siblings, 0 replies; 15+ messages in thread From: Dragos Andriciuc @ 2026-04-22 09:45 UTC (permalink / raw) To: Tom Lane <[email protected]>; David G. Johnston <[email protected]>; +Cc: Chao Li <[email protected]>; Philip Alger <[email protected]>; Andreas Karlsson <[email protected]>; pgsql-hackers Hello Tom, Thank you for the review, I agree with you. For this patch, I focused on Chapter 1 to improve the initial onboarding experience, but you’re right that Chapters 2 and 3 would benefit from introductory paragraphs as well. I will address these in a follow up update to keep the structure consistent and intact in the tutorial. I appreciate the feedback. Best regards, Dragos ________________________________ From: Tom Lane <[email protected]> Sent: Thursday, March 26, 2026 8:14 PM To: David G. Johnston <[email protected]> Cc: Chao Li <[email protected]>; Dragos Andriciuc <[email protected]>; Philip Alger <[email protected]>; Andreas Karlsson <[email protected]>; [email protected] <[email protected]> Subject: Re: DOCS - Add introductory paragraph to Getting Started chapter "David G. Johnston" <[email protected]> writes: > On Thu, Feb 26, 2026 at 1:49 AM Chao Li <[email protected]> wrote: >>> <v3-0001-Add-introductory-paragraph-to-Getting-Started-chapter.patch> >> V3 seems very polished. I agree the new paragraph is a helpful improvement >> for new doc readers. > Works for me. I have no particular objection to this patch, but I wonder why it only addresses the tutorial's Chapter 1. Chapters 2 and 3 likewise lack any introductory paragraph. regards, tom lane ^ permalink raw reply [nested|flat] 15+ messages in thread
* [PATCH] DOCS: Add introductory paragraph to Getting Started chapter @ 2026-05-25 05:33 vellaipandiyan sm <[email protected]> 0 siblings, 1 reply; 15+ messages in thread From: vellaipandiyan sm @ 2026-05-25 05:33 UTC (permalink / raw) To: PostgreSQL Hackers <[email protected]> Hi, This patch adds a short introductory paragraph to the Getting Started chapter in the documentation. The paragraph provides a short overview of the topics covered in the chapter and helps improve readability for new users. Thanks. Vellaipandiyan Attachments: [application/octet-stream] 0001-Add-introductory-paragraph-to-Getting-Started-chapte.patch (886B, 3-0001-Add-introductory-paragraph-to-Getting-Started-chapte.patch) download | inline diff: From 994135bc74222ea7871afd544dcf21fa1f8f4ef6 Mon Sep 17 00:00:00 2001 From: vellaipandiyansm <[email protected]> Date: Mon, 25 May 2026 05:31:55 +0000 Subject: [PATCH] Add introductory paragraph to Getting Started chapter --- doc/src/sgml/start.sgml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 0263a70..5bad9a8 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -2,7 +2,12 @@ <chapter id="tutorial-start"> <title>Getting Started</title> - +<para> +This chapter introduces the basics of working with +<productname>PostgreSQL</productname>. It explains how to +install the software, describes basic architectural concepts, +and shows you how to create and access a database. +</para> <sect1 id="tutorial-install"> <title>Installation</title> -- 2.53.0 ^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: [PATCH] DOCS: Add introductory paragraph to Getting Started chapter @ 2026-05-27 00:14 Bruce Momjian <[email protected]> parent: vellaipandiyan sm <[email protected]> 0 siblings, 0 replies; 15+ messages in thread From: Bruce Momjian @ 2026-05-27 00:14 UTC (permalink / raw) To: vellaipandiyan sm <[email protected]>; +Cc: PostgreSQL Hackers <[email protected]> On Mon, May 25, 2026 at 11:03:33AM +0530, vellaipandiyan sm wrote: > Hi, > > This patch adds a short introductory paragraph to the > Getting Started chapter in the documentation. > > The paragraph provides a short overview of the topics covered > in the chapter and helps improve readability for new users. Uh, this just duplcites the table of contents, which appears just above the text: https://www.postgresql.org/docs/current/tutorial-start.html I don't see the point in adding this text. --------------------------------------------------------------------------- > > Thanks. > > Vellaipandiyan > > From 994135bc74222ea7871afd544dcf21fa1f8f4ef6 Mon Sep 17 00:00:00 2001 > From: vellaipandiyansm <[email protected]> > Date: Mon, 25 May 2026 05:31:55 +0000 > Subject: [PATCH] Add introductory paragraph to Getting Started chapter > > --- > doc/src/sgml/start.sgml | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml > index 0263a70..5bad9a8 100644 > --- a/doc/src/sgml/start.sgml > +++ b/doc/src/sgml/start.sgml > @@ -2,7 +2,12 @@ > > <chapter id="tutorial-start"> > <title>Getting Started</title> > - > +<para> > +This chapter introduces the basics of working with > +<productname>PostgreSQL</productname>. It explains how to > +install the software, describes basic architectural concepts, > +and shows you how to create and access a database. > +</para> > <sect1 id="tutorial-install"> > <title>Installation</title> > > -- > 2.53.0 > -- Bruce Momjian <[email protected]> https://momjian.us EDB https://enterprisedb.com Do not let urgent matters crowd out time for investment in the future. ^ permalink raw reply [nested|flat] 15+ messages in thread
end of thread, other threads:[~2026-05-27 00:14 UTC | newest] Thread overview: 15+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2026-02-19 16:14 Re: DOCS - Add introductory paragraph to Getting Started chapter David G. Johnston <[email protected]> 2026-02-19 17:04 ` Dragos Andriciuc <[email protected]> 2026-02-26 08:48 ` Chao Li <[email protected]> 2026-02-27 16:28 ` David G. Johnston <[email protected]> 2026-04-22 09:45 ` Dragos Andriciuc <[email protected]> 2026-04-08 01:05 Re: DOCS - Add introductory paragraph to Getting Started chapter Dapeng Wang <[email protected]> 2026-04-09 12:55 ` Andreas Karlsson <[email protected]> 2026-04-10 00:36 ` Dapeng Wang <[email protected]> 2026-04-10 00:40 ` Andreas Karlsson <[email protected]> 2026-04-10 00:47 ` Dapeng Wang <[email protected]> 2026-04-10 00:47 ` Tom Lane <[email protected]> 2026-04-10 01:03 ` Dapeng Wang <[email protected]> 2026-04-15 18:03 ` Peter Eisentraut <[email protected]> 2026-05-25 05:33 [PATCH] DOCS: Add introductory paragraph to Getting Started chapter vellaipandiyan sm <[email protected]> 2026-05-27 00:14 ` Re: [PATCH] DOCS: Add introductory paragraph to Getting Started chapter Bruce Momjian <[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