Comment typo in pg_dump.h

Started by Amit Langoteabout 10 years ago3 messages
#1Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
1 attachment(s)

Attached fixes the following comment typo (copy-pasto):

-    Oid         toast_oid;      /* for restore toast frozen xid */
+    Oid         toast_oid;      /* for restore toast table oid */

Thanks,
Amit

Attachments:

comment-typo-pg-dump-h.patchtext/x-diff; name=comment-typo-pg-dump-h.patchDownload
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h
index 3c64a82..9c63abd 100644
--- a/src/bin/pg_dump/pg_dump.h
+++ b/src/bin/pg_dump/pg_dump.h
@@ -215,7 +215,7 @@ typedef struct _tableInfo
 	bool		hasoids;		/* does it have OIDs? */
 	uint32		frozenxid;		/* for restore frozen xid */
 	uint32		minmxid;		/* for restore min multi xid */
-	Oid			toast_oid;		/* for restore toast frozen xid */
+	Oid			toast_oid;		/* for restore toast table oid */
 	uint32		toast_frozenxid;	/* for restore toast frozen xid */
 	uint32		toast_minmxid;	/* for restore toast min multi xid */
 	int			ncheck;			/* # of CHECK expressions */
#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Amit Langote (#1)
Re: Comment typo in pg_dump.h

Amit Langote <Langote_Amit_f8@lab.ntt.co.jp> writes:

Attached fixes the following comment typo (copy-pasto):
-    Oid         toast_oid;      /* for restore toast frozen xid */
+    Oid         toast_oid;      /* for restore toast table oid */

That comment needs more help than just that ;-). Done, thanks.

regards, tom lane

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

#3Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Tom Lane (#2)
Re: Comment typo in pg_dump.h

On 2015/12/25 0:44, Tom Lane wrote:

Amit Langote <Langote_Amit_f8@lab.ntt.co.jp> writes:

Attached fixes the following comment typo (copy-pasto):
-    Oid         toast_oid;      /* for restore toast frozen xid */
+    Oid         toast_oid;      /* for restore toast table oid */

That comment needs more help than just that ;-). Done, thanks.

It definitely did, thanks!

Regards,
Amit

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