summaryrefslogtreecommitdiff
path: root/src/tools
AgeCommit message (Collapse)Author
2006-03-15Fix typo in pgcvslog, used == instead of =.Bruce Momjian
2006-03-11Add CVS tag lines to files that were lacking them.Bruce Momjian
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-05Update to 2006.Bruce Momjian
2006-02-12Update release checlist.Bruce Momjian
2006-02-04Move thread_test directory from /tools to /test so source-only tarballsBruce Momjian
have the directory for the configure test.
2005-12-09Simplify lock manager data structures by making a clear separation betweenTom Lane
the data defining the semantics of a lock method (ie, conflict resolution table and ancillary data, which is all constant) and the hash tables storing the current state. The only thing we give up by this is the ability to use separate hashtables for different lock methods, but there is no need for that anyway. Put some extra fields into the LockMethod definition structs to clean up some other uglinesses, like hard-wired tests for DEFAULT_LOCKMETHOD and USER_LOCKMETHOD. This commit doesn't do anything about the performance issues we were discussing, but it clears away some of the underbrush that's in the way of fixing that.
2005-11-23Fix pgindent of libpq-fe.h by hacking pgindent script.Bruce Momjian
Remove pgbench comment that was causing problems.
2005-11-16Update error message and documentation for fsync test.Bruce Momjian
2005-11-16Have test_fsync honor -f filename argument.Bruce Momjian
2005-11-15Prevent certain symbols that are used for both typedefs and variableBruce Momjian
names from being added to pgindent's typedef list. The existance of them caused weird formatting in the date/type files, and in keywords.c. Backpatch to 8.1.X.
2005-11-15Fix recent problems with BSD indent, including indenting past 80Bruce Momjian
columns, shifting comment to the right when more than 150 'else if' clauses were used, and update typedefs for 8.1.X. NetBSD patched updated, with documentation.
2005-11-13Revert pgindent length back to 79 because we are going to fix the BSDBruce Momjian
indent bug.
2005-11-07Lower pgident length to 77, document BSD indent bug.Bruce Momjian
2005-11-07Change maximum pgindent length from 79 to 78, per Tom.Bruce Momjian
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-11-05Add mention to update FAQ item on most recent release to RELEASE_CHANGES.Bruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-15Update pgindent typedef list.Bruce Momjian
2005-10-10Document the process to update translations.Peter Eisentraut
2005-10-07Remove an unused typedef.Alvaro Herrera
2005-09-27Suppress FAQ and TODO changes in pgcvslog output.Bruce Momjian
2005-09-22Add instructions.Bruce Momjian
2005-09-22Add "codelines" script to compute number of lines in a releaes.Bruce Momjian
2005-08-25Update release checklist.Bruce Momjian
2005-08-24More beta1 cleanup.Bruce Momjian
2005-08-23The attached patch updates the thread test program to run stand-alone onBruce Momjian
Windows. The test itself is bypassed in configure as discussed, and libpq has been updated appropriately to allow it to build in thread-safe mode. Dave Page
2005-08-23Back out incorrect commit.Bruce Momjian
2005-08-23Fix function name.Bruce Momjian
2005-08-17Minor cleanup.Bruce Momjian
2005-08-16Update comments.Bruce Momjian
2005-08-16Improve comment.Bruce Momjian
2005-08-16Update pgcvslog comment on how to find branch start time.Bruce Momjian
Run autoconf/autoheader in case someone forgot in the past.
2005-07-13Fix #elif spacing too.Bruce Momjian
2005-07-13Fix pgindent to not have blank line before #else in variable definitionBruce Momjian
section of a function.
2005-07-13Add backslashes to parentheses in awk regex because if not, they areBruce Momjian
treated as regex groups.
2005-07-08testing activitymailPostgreSQL Daemon
2005-06-28Update typedefs for pgindent.Bruce Momjian
2005-06-28Change awk ~ pattern from "" to //.Bruce Momjian
Remove extra backslash in pattern. Luke Lonergan
2005-06-23Move findoidjoins out of contrib and into src/tools, which is a moreTom Lane
logical place for it since it is of no use to users. Per recent discussions on cleaning up contrib.
2005-06-04Back out make_mkid change.Bruce Momjian
2005-06-04Improve readability of config location params by adding newline.Bruce Momjian
2005-05-27Fix compile of entab to use stdarg.h. Clean up includes.Bruce Momjian
Marko Kreen
2005-05-08Update release checklist to reflect that HISTORY and INSTALL don'tTom Lane
need to be created by hand anymore.
2005-05-06Update backend flowchart HTML.Bruce Momjian
2005-05-06Update flowchart sections to match current CVS.Bruce Momjian
2005-05-06Markup improvements.Bruce Momjian
2005-05-06Update backend flowchard wordingBruce Momjian
2005-04-15This patch changes the use of varargs.h to stdarg.h asNeil Conway
required by modern versions of GCC. Niels Breet
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
few palloc's. I also chose to eliminate the restype and restypmod fields entirely, since they are redundant with information stored in the node's contained expression; re-examining the expression at need seems simpler and more reliable than trying to keep restype/restypmod up to date. initdb forced due to change in contents of stored rules.