pg_llog not mentioned in "Database File Layout"

Started by Amit Langoteover 11 years ago5 messages
#1Amit Langote
amitlangote09@gmail.com

Hi,

Just noticed pg_llog is not mentioned in the "Database File Layout"
section. Wonder if it's an oversight?

--
Amit

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#2Fabrízio de Royes Mello
fabriziomello@gmail.com
In reply to: Amit Langote (#1)
1 attachment(s)
Re: pg_llog not mentioned in "Database File Layout"

On Mon, May 26, 2014 at 12:33 PM, Amit Langote <amitlangote09@gmail.com>wrote:

Hi,

Just noticed pg_llog is not mentioned in the "Database File Layout"
section. Wonder if it's an oversight?

Yes, it is an oversight. Patch attached.

Regards,

--
Fabrízio de Royes Mello
Consultoria/Coaching PostgreSQL

Show quoted text

Timbira: http://www.timbira.com.br
Blog sobre TI: http://fabriziomello.blogspot.com
Perfil Linkedin: http://br.linkedin.com/in/fabriziomello
Twitter: http://twitter.com/fabriziomello

Attachments:

add-pg_llog-to-database-file-layout-doc.patchtext/x-diff; charset=US-ASCII; name=add-pg_llog-to-database-file-layout-doc.patchDownload
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml
index 57e7f09..132169d 100644
--- a/doc/src/sgml/storage.sgml
+++ b/doc/src/sgml/storage.sgml
@@ -78,6 +78,11 @@ Item
 </row>
 
 <row>
+ <entry><filename>pg_llog</></entry>
+ <entry>Subdirectory containing logical replication status data</entry>
+</row>
+
+<row>
  <entry><filename>pg_multixact</></entry>
  <entry>Subdirectory containing multitransaction status data
   (used for shared row locks)</entry>
#3Fujii Masao
masao.fujii@gmail.com
In reply to: Fabrízio de Royes Mello (#2)
Re: pg_llog not mentioned in "Database File Layout"

On Wed, May 28, 2014 at 4:36 AM, Fabrízio de Royes Mello
<fabriziomello@gmail.com> wrote:

On Mon, May 26, 2014 at 12:33 PM, Amit Langote <amitlangote09@gmail.com>
wrote:

Hi,

Just noticed pg_llog is not mentioned in the "Database File Layout"
section. Wonder if it's an oversight?

Yes, it is an oversight. Patch attached.

ISTM pg_stat directory is also missing in the doc.

Regards,

--
Fujii Masao

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#4Andres Freund
andres@2ndquadrant.com
In reply to: Amit Langote (#1)
Re: pg_llog not mentioned in "Database File Layout"

Hi,

On 2014-05-27 00:33:12 +0900, Amit Langote wrote:

Just noticed pg_llog is not mentioned in the "Database File Layout"
section. Wonder if it's an oversight?

Yes, it should be mentioned there. I'll fix it.

Greetings,

Andres Freund

--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#5Fabrízio de Royes Mello
fabriziomello@gmail.com
In reply to: Fujii Masao (#3)
1 attachment(s)
Re: pg_llog not mentioned in "Database File Layout"

On Wed, May 28, 2014 at 10:46 AM, Fujii Masao <masao.fujii@gmail.com> wrote:

On Wed, May 28, 2014 at 4:36 AM, Fabrízio de Royes Mello
<fabriziomello@gmail.com> wrote:

On Mon, May 26, 2014 at 12:33 PM, Amit Langote <amitlangote09@gmail.com>
wrote:

Hi,

Just noticed pg_llog is not mentioned in the "Database File Layout"
section. Wonder if it's an oversight?

Yes, it is an oversight. Patch attached.

ISTM pg_stat directory is also missing in the doc.

Added pg_stat too. Attached patch!

--
Fabrízio de Royes Mello
Consultoria/Coaching PostgreSQL

Show quoted text

Timbira: http://www.timbira.com.br
Blog sobre TI: http://fabriziomello.blogspot.com
Perfil Linkedin: http://br.linkedin.com/in/fabriziomello
Twitter: http://twitter.com/fabriziomello

Attachments:

fix-database-file-layout-doc.patchtext/x-diff; charset=US-ASCII; name=fix-database-file-layout-doc.patchDownload
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml
index 57e7f09..41f81e9 100644
--- a/doc/src/sgml/storage.sgml
+++ b/doc/src/sgml/storage.sgml
@@ -78,6 +78,11 @@ Item
 </row>
 
 <row>
+ <entry><filename>pg_llog</></entry>
+ <entry>Subdirectory containing logical replication status data</entry>
+</row>
+
+<row>
  <entry><filename>pg_multixact</></entry>
  <entry>Subdirectory containing multitransaction status data
   (used for shared row locks)</entry>
@@ -104,6 +109,11 @@ Item
 </row>
 
 <row>
+ <entry><filename>pg_stat</></entry>
+ <entry>Subdirectory containing files for the statistics subsystem</entry>
+</row>
+
+<row>
  <entry><filename>pg_stat_tmp</></entry>
  <entry>Subdirectory containing temporary files for the statistics
   subsystem</entry>