Re: WAL format changes
Fujii Masao <masao.fujii@gmail.com>
From: Fujii Masao <masao.fujii@gmail.com>
To: Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>
Cc: Robert Haas <robertmhaas@gmail.com>,
Andres Freund <andres@2ndquadrant.com>, pgsql-hackers@postgresql.org
Date: 2012-06-25T17:57:42Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Update pgindent install instructions and update typedef list.
- 60801944fa10 9.2.0 cited
Attachments
- walsender_typo_v1.patch (application/octet-stream) patch v1
On Tue, Jun 26, 2012 at 2:53 AM, Fujii Masao <masao.fujii@gmail.com> wrote: > On Mon, Jun 25, 2012 at 1:24 AM, Heikki Linnakangas > <heikki.linnakangas@enterprisedb.com> wrote: >> Ok, committed all the WAL format changes now. > > I found the typo. > > In walsender.c > - reply.write.xlogid, reply.write.xrecoff, > - reply.flush.xlogid, reply.flush.xrecoff, > - reply.apply.xlogid, reply.apply.xrecoff); > + (uint32) (reply.write << 32), (uint32) reply.write, > + (uint32) (reply.flush << 32), (uint32) reply.flush, > + (uint32) (reply.apply << 32), (uint32) reply.apply); > > "<<" should be ">>". The attached patch fixes this typo. Oh, I forgot to attach the patch.. Here is the patch. Regards, -- Fujii Masao