summaryrefslogtreecommitdiff
path: root/contrib/pg_xlogdump
AgeCommit message (Collapse)Author
2013-02-27Fix typo in "pg_xlogdump --help" and error message.Heikki Linnakangas
Fujii Masao and me.
2013-02-26Add missing .gitignore file.Tom Lane
2013-02-26Clean up "stopgap" implementation of timestamptz_to_str().Tom Lane
Use correct type for "result", fix bogus strftime argument, don't use unnecessary static variables, improve comments. Andres Freund and Tom Lane
2013-02-24Fix build of contrib/pg_xlogdump.Tom Lane
rmgrdesc.c is not auto-generated now, though it apparently was the last time the Makefile was updated.
2013-02-22Fix some typos and grammatical mistakesAlvaro Herrera
... as well a update copyrights statements to 2013. Noted by Thom Brown and Peter Geoghegan
2013-02-22Fix copy-and-pasteoAlvaro Herrera
Harmless, but it's certainly better like this. Noticed by Andres Freund
2013-02-22Add pg_xlogdump contrib programAlvaro Herrera
This program relies on rm_desc backend routines and the xlogreader infrastructure to emit human-readable rendering of WAL records. Author: Andres Freund, with many reworks by Álvaro Reviewed (in a much earlier version) by Peter Eisentraut