| From: | Alvaro Herrera <alvherre(at)2ndquadrant(dot)com> | 
|---|---|
| To: | Andres Freund <andres(at)2ndquadrant(dot)com> | 
| Cc: | pgsql-hackers(at)postgresql(dot)org, Andres Freund <andres(at)anarazel(dot)de> | 
| Subject: | Re: [PATCH 4/5] Add pg_xlogdump contrib module | 
| Date: | 2013-02-04 16:22:26 | 
| Message-ID: | 20130204162226.GF4963@alvh.no-ip.org | 
| Views: | Whole Thread | Raw Message | Download mbox | Resend email | 
| Thread: | |
| Lists: | pgsql-hackers | 
I didn't like this bit too much:
> diff --git a/contrib/pg_xlogdump/tables.c b/contrib/pg_xlogdump/tables.c
> new file mode 100644
> index 0000000..e947e0d
> --- /dev/null
> +++ b/contrib/pg_xlogdump/tables.c
> @@ -0,0 +1,78 @@
> +/*
> + * RmgrTable linked only to functions available outside of the backend.
> + *
> + * needs to be synced with src/backend/access/transam/rmgr.c
> + */
> +const RmgrData RmgrTable[RM_MAX_ID + 1] = {
> +	{"XLOG", NULL, xlog_desc, NULL, NULL, NULL},
> +	{"Transaction", NULL, xact_desc, NULL, NULL, NULL},
So I propose the following patch instead.  This lets pg_xlogdump compile
only the file it needs, and not concern itself with the rest of rmgr.c.
-- 
Álvaro Herrera                http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
| Attachment | Content-Type | Size | 
|---|---|---|
| split-rm_desc.patch | text/x-diff | 6.8 KB | 
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Andres Freund | 2013-02-04 16:29:29 | Re: [PATCH 4/5] Add pg_xlogdump contrib module | 
| Previous Message | Benedikt Grundmann | 2013-02-04 16:18:02 | Re: json api WIP patch |