summaryrefslogtreecommitdiff
path: root/dist/log.py
Commit message (Collapse)AuthorAgeFilesLines
* Cache a maximum of 2MB per session for scratch buffers (configurable via an ↵Michael Cahill2015-01-051-2/+1
| | | | | | undocumented "session_scratch_max" config). SERVER-16623
* Fix json formatting of printlog to be valid jsonMark Benvenuto2014-12-231-1/+5
|
* Modify printlog output so that arbitrary strings are shownDon Anderson2014-12-051-14/+69
| | | | as using the JSON Unicode standard. refs #1438.
* Change the Python scripts to follow Python indenting standards (4 spaceKeith Bostic2014-12-031-129/+129
| | | | indents, spaces only).
* Make generated record and op types public.Susan LoVerso2014-07-291-4/+5
|
* Output optype for logprint and an invalid optype macro. #1106Susan LoVerso2014-07-291-1/+3
|
* Fix a bug when packing structures that include the packed size.Michael Cahill2014-07-171-1/+1
| | | | refs #1104
* Check Python scripts for 80 column line wrapping, fix violations.Michael Cahill2013-11-051-15/+26
|
* Fix some compiler warnings.Alex Gorrod2013-10-171-1/+1
| | | | | Printing off_t seems a bit fraught. It is usually a signed value, so casting to intmax_t is the recommended solution.
* Fix printlog to use the auto-generated functions.Michael Cahill2013-09-141-1/+36
|
* Save LSNs in files during checkpoint.Michael Cahill2013-08-261-2/+2
|
* Add a fast grow routine for buffers, so transactions with many operations ↵Michael Cahill2013-08-201-1/+1
| | | | don't repeatedly realloc memory.
* Add auto-generated function to print log records.Michael Cahill2013-08-161-21/+46
|
* Update dist/log.py to generate code to read and write log records.Michael Cahill2013-08-131-16/+165
| | | | | --HG-- rename : src/log/log_desc.c => src/log/log_auto.c
* Don't create a file without a trailing newline.Keith Bostic2013-07-171-1/+1
|
* Clean up warnings.Susan LoVerso2013-06-191-31/+1
|
* Change all struct names to have the prefix "__wt_", and all corresponding ↵Michael Cahill2011-05-301-1/+1
| | | | typedefs to start with "WT_".
* Add the beginnings of a log manager.Michael Cahill2011-03-161-0/+70
--HG-- rename : src/utilities/util_dump.c => src/utilities/util_printlog.c