aboutsummaryrefslogtreecommitdiff
path: root/src/include/postgres_ext.h
Commit message (Collapse)AuthorAge
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-10
| | | | | | | | | | | 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.
* Repair not-too-well-thought-out code to do rangechecking of OIDs onTom Lane2000-12-22
| | | | 64-bit machines. Also, make oidvectorin use the same code as oidin.
* Turns out OIDNAMELEN wasn't really being used at all!Tom Lane1999-06-04
| | | | Get rid of it to make customization of NAMEDATALEN easier.
* Change my-function-name-- to my_function_name, and optimizer renames.Bruce Momjian1999-02-13
|
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-07
|
* Fix bug: libpq clients (which include libpq-fe.h) won't compile.Bryan Henderson1996-12-10
Plus: sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.