Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-28 | If pnstrdup is going to be promoted to a generally available function, | Tom Lane | |
it ought to conform to the rest of palloc.h in using Size for sizes. | |||
2008-06-18 | Move wchar2char() and char2wchar() from tsearch into /mb to be easier to | Bruce Momjian | |
use for other modules; also move pnstrdup(). Clean up code slightly. | |||
2008-01-01 | Update copyrights in source tree to 2008. | Bruce Momjian | |
2007-07-25 | Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with | Magnus Hagander | |
third party includes (like tcl) that define DLLIMPORT. | |||
2007-01-05 | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | |
back-stamped for this. | |||
2006-03-05 | Update copyright for 2006. Update scripts. | Bruce Momjian | |
2005-10-15 | Standard pgindent run for 8.1. | Bruce Momjian | |
2005-02-18 | Convert MemoryContextSwitchTo() into an inline function when using GCC. | Tom Lane | |
2004-12-31 | Tag appropriate files for rc3 | PostgreSQL Daemon | |
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ... | |||
2004-09-10 | Fix palloc call from /port for Cygwin. | Bruce Momjian | |
2004-08-29 | Update copyright to 2004. | Bruce Momjian | |
2004-08-08 | If these are ifdef WIN32 in the .c file, should be so in .h as well. | Tom Lane | |
2004-08-08 | Allow libpgport to call memory allocation routines even though | Bruce Momjian | |
CurrentMemoryContext is DLLIMPORT on Win32. Work around that by creating stubs in the backend for palloc/pstrdup. Also fix pg_dumpall to do proper quoting on Win32. | |||
2003-11-29 | make sure the $Id tags are converted to $PostgreSQL as well ... | PostgreSQL Daemon | |
2003-08-04 | Update copyrights to 2003. | Bruce Momjian | |
2003-08-04 | pgindent run. | Bruce Momjian | |
2002-12-16 | Code review for palloc0 patch --- avoid dangerous and unnecessary | Tom Lane | |
practice of evaluating MemSet's arguments multiple times, except for the special case of newNode(), where we can assume the argument is a constant sizeof() operator. Also, add GetMemoryChunkContext() to mcxt.c's API, in preparation for fixing recent GEQO breakage. | |||
2002-11-13 | Split MemSet into three parts to constant comparisons can be optimized | Bruce Momjian | |
away by the compiler; used by palloc0. | |||
2002-11-10 | Add palloc0 function to inline MemSet for newNode call. | Bruce Momjian | |
2002-10-11 | Oops, back out newNode changes. We are not ready for that yet. | Bruce Momjian | |
2002-10-11 | Prevent tv_sec from becoming negative in connection timeout code. | Bruce Momjian | |
2002-06-20 | Update copyright to 2002. | Bruce Momjian | |
2001-11-05 | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | |
initdb/regression tests pass. | |||
2001-10-25 | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | |
tests pass. | |||
2001-03-22 | pgindent run. Make it all clean. | Bruce Momjian | |
2001-02-10 | Restructure the key include files per recent pghackers discussion: there | Tom Lane | |
are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions. | |||
2001-01-24 | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | |
2000-06-28 | First phase of memory management rewrite (see backend/utils/mmgr/README | Tom Lane | |
for details). It doesn't really do that much yet, since there are no short-term memory contexts in the executor, but the infrastructure is in place and long-term contexts are handled reasonably. A few long- standing bugs have been fixed, such as 'VACUUM; anything' in a single query string crashing. Also, out-of-memory is now considered a recoverable ERROR, not FATAL. Eliminate a large amount of crufty, now-dead code in and around memory management. Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and backend startup. | |||
2000-01-26 | Add: | Bruce Momjian | |
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files. | |||
2000-01-13 | Fixed everything in and surrounding createdb and dropdb to make it more | Peter Eisentraut | |
error-proof. Rearranged some old code and removed dead sections. | |||
1999-07-14 | Cleanup of /include #include's, for 6.6 only. | Bruce Momjian | |
1999-05-25 | pgindent run over code. | Bruce Momjian | |
1999-02-13 | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | |
1999-02-06 | New alloc set code using a memory block pool for small allocations. | Jan Wieck | |
Jan | |||
1998-09-01 | OK, folks, here is the pgindent output. | Bruce Momjian | |
1997-09-08 | Another PGINDENT run that changes variable indenting and case label ↵ | Bruce Momjian | |
indenting. Also static variable indenting. | |||
1997-09-07 | Massive commit to run PGINDENT on all *.c and *.h files. | Bruce Momjian | |
1996-11-26 | Make it compile on Ultrix. Thanks Erik Bertelson. | Bryan Henderson | |
1996-10-31 | remove: | Marc G. Fournier | |
#include "postgres.h" #include "c.h" | |||
1996-08-28 | More cleanups of the include files | Marc G. Fournier | |
- centralizing to simplify the -I's required to compile |