summaryrefslogtreecommitdiff
path: root/src/include/c.h
AgeCommit message (Expand)Author
2008-10-09Un-break non-NLS builds.Tom Lane
2008-07-03Update source code comment about when to use gettext_noop().Bruce Momjian
2008-06-24Reduce the alignment requirement of type "name" from int to char, and arrangeTom Lane
2008-06-17Move USE_WIDE_UPPER_LOWER define to c.h, and remove TS_USE_WIDE and useBruce Momjian
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-18Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera
2008-03-17Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut
2008-02-23Change the declaration of struct varlena so that the length word isTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-09-05Implement lazy XID allocation: transactions that do not modify any databaseTom Lane
2007-07-25Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict withMagnus Hagander
2007-02-27Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane
2007-02-05Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane
2007-01-25Add 'output file' option for pg_dumpall, especially useful for Win32,Bruce Momjian
2007-01-11Allow Borland CC to compile libpq and psql.Bruce Momjian
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-03Rearrange MSVC errcode hack, fix incorrect _MSC_VER test. MagnusTom Lane
2006-10-03Move WIN32_ONLY_COMPILER define from c.h to win32.h because it was beingBruce Momjian
2006-08-10Return inline to win32.h because code was OK, but keep additionalBruce Momjian
2006-08-10Move "#define inline __inline" from port/win32.h to c.h because Win32Bruce Momjian
2006-08-08Fix definition of "errcode" for MSVC.Bruce Momjian
2006-07-29Don't use #include <crtdefs.h> for MSVC <= 1400.Bruce Momjian
2006-07-24DTrace support, with a small initial set of probesPeter Eisentraut
2006-07-06Attached patch is required ot build with the CRT that comes with VisualBruce Momjian
2006-06-26Fix blank line.Bruce Momjian
2006-06-24Fix re-inclusion of port header file on Windows, per Magnus.Tom Lane
2006-06-07Prepare code to be built by MSVC:Bruce Momjian
2006-05-28Fix up pg_dump to do string escaping fully correctly for client encodingTom Lane
2006-05-26Use E'' strings internally only when standard_conforming_strings =Bruce Momjian
2006-04-14Repair a low-probability race condition identified by Qingqing Zhou.Tom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-05Improve STRINGS_H macro test for MSVC extensions.Bruce Momjian
2006-03-03Add workaround so MSVC doesn't try to load strings.h, which it doesn'tBruce Momjian
2006-02-16Change MemSet to use long instead of int32, for better performance onPeter Eisentraut
2006-02-03Allow MEMSET_LOOP_LIMIT to be set on a per-platform basis, and turn offBruce Momjian
2006-01-05Remove BEOS port.Bruce Momjian
2005-12-25I have added these macros to c.h:Bruce Momjian
2005-12-06Make Win32 build use our port/snprintf.c routines, instead of dependingTom Lane
2005-11-17Make SQL arrays support null elements. This commit fixes the core arrayTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-07-21Add comment about void* use in MemSet.Bruce Momjian
2005-07-18MemSet() must not cast its pointer argument to int32* until after it hasTom Lane
2005-07-02Add E'' to internally created SQL strings that contain backslashes.Bruce Momjian
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-08Change WAL-logging scheme for multixacts to be more like regularTom Lane
2005-05-25Add parentheses to macros when args are used in computations. WithoutBruce Momjian
2005-05-11Code cleanup: in C89, there is no point casting the first argument toNeil Conway
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane