Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add comments defining "typelem" column of pg_type. | Bryan Henderson | 1996-12-09 |
| | |||
* | Change portname "sparc" to "sunos4" and change some portname dependencies to | Bryan Henderson | 1996-12-04 |
| | | | | feature dependencies. Thanks Kurt J. Lidl. | ||
* | Remove #if defined(bsdi) define SIGJMP_BUF, per Kurt Lidl. | Bryan Henderson | 1996-12-03 |
| | |||
* | This patch changes quite a few instances of references of Oid's | Bruce Momjian | 1996-11-30 |
| | | | | | | | | | | | | as ints and longs. Touches on quite a few function args as well. Most other files look ok as far as Oids go...still checking though... Since Oids are type'd as unsigned ints, they should prolly be used with the %ud format string in elog and sprintf messages. Not sure what kind of strangeness that could produce. Darren King | ||
* | vrl_min_tlen added to VRelListData. | Vadim B. Mikheev | 1996-11-29 |
| | |||
* | Remove unused define's. | Bruce Momjian | 1996-11-27 |
| | |||
* | More stuff to make it compile on various ports. | Bryan Henderson | 1996-11-27 |
| | |||
* | New structures for new vacuum. | Vadim B. Mikheev | 1996-11-27 |
| | |||
* | New mdtruncate() & smgrtruncate() funcs. | Vadim B. Mikheev | 1996-11-27 |
| | |||
* | TransactionIdIsInProgress moved to shmem.c | Vadim B. Mikheev | 1996-11-27 |
| | |||
* | Whoops, redo Ultrix patch so the other ports still compile. | Bryan Henderson | 1996-11-26 |
| | |||
* | Make it compile on Ultrix. Thanks Erik Bertelson. | Bryan Henderson | 1996-11-26 |
| | |||
* | Move include of signal.h inside pqsignal.h so it's always where it's needed. | Bryan Henderson | 1996-11-24 |
| | |||
* | Include some macros that used to be -D options in Makefile.global. | Bryan Henderson | 1996-11-18 |
| | |||
* | Add prototype for new datetime functions. | Bruce Momjian | 1996-11-16 |
| | |||
* | Features added: | Marc G. Fournier | 1996-11-14 |
| | | | | | | | | | | | * Wrote max(date) and min(date) aggregates * Wrote operator "-" for date; date - date yields number of days difference * Wrote operator+(date,int) and operator-(date,int); the int is the number of days. Each operator returns a new date. By: Tom Tromey <tromey@creche.cygnus.com> | ||
* | Fix a comment that wasn't commente'd out | Marc G. Fournier | 1996-11-14 |
| | | | | Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk> | ||
* | Remove most compile-time options, add a few runtime options to make up for it. | Bryan Henderson | 1996-11-14 |
| | | | | | | | In particular, no more compiled-in default for PGDATA or LIBDIR. Commands that need them need either invocation options or environment variables. PGPORT default is hardcoded as 5432, but overrideable with options or environment variables. | ||
* | Include stdlib.h to gives its NULL, etc. definitions precedence over ours. | Bryan Henderson | 1996-11-14 |
| | |||
* | Commit of a *MAJOR* patch from Dan McGuirk <djm@indirect.com> | Marc G. Fournier | 1996-11-13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: * Unique index capability works using the syntax 'create unique index'. * Duplicate OID's in the system tables are removed. I put little scripts called 'duplicate_oids' and 'find_oid' in include/catalog that help to find and remove duplicate OID's. I also moved 'unused_oids' from backend/catalog to include/catalog, since it has to be in the same directory as the include files in order to work. * The backend tries converting the name of a function or aggregate to all lowercase if the original name given doesn't work (mostly for compatibility with ODBC). * You can 'SELECT NULL' to your heart's content. * I put my _bt_updateitem fix in instead, which uses _bt_insertonpg so that even if the new key is so big that the page has to be split, everything still works. * All literal references to system catalog OID's have been replaced with references to define'd constants from the catalog header files. * I added a couple of node copy functions. I think this was a preliminary attempt to get rules to work. | ||
* | Use new utils/version.c instead of backend/utils/init/magic.c. | Bryan Henderson | 1996-11-12 |
| | |||
* | Goes with the recently added src/utils/version.c, will replace some stuff in | Bryan Henderson | 1996-11-11 |
| | | | | miscadmin.h. | ||
* | All external function definitions now have prototypes that are checked. | Bruce Momjian | 1996-11-10 |
| | |||
* | Quiet compiler warnings. | Bryan Henderson | 1996-11-10 |
| | |||
* | Add USE_POSIX_TIME, HAVE_TZSET for Linux so backend compiles. | Bryan Henderson | 1996-11-10 |
| | |||
* | Added new include file. | Bruce Momjian | 1996-11-09 |
| | |||
* | A few more sparc_solaris cleanups from keith parks | Marc G. Fournier | 1996-11-09 |
| | |||
* | More compile cleanups | Bruce Momjian | 1996-11-08 |
| | |||
* | Change includes from "" to <> | Marc G. Fournier | 1996-11-08 |
| | |||
* | Compile and warning cleanup | Bruce Momjian | 1996-11-08 |
| | |||
* | Secondly, small problem when trying to create a MAX/MIN aggregate in 1.09. | Marc G. Fournier | 1996-11-08 |
| | | | | | | | | | | | | | | | | | >From the create_aggregate man page... "The arguments to state-transition-function-1 must be (stype1,basetype), and its return value must be stype1." create aggregate MIN (sfunc1 = int2smaller, basetype = int2, stype1 = int2); will fail becase int2smaller and int2larger are in pg_proc as returning an int4. Can't happen since both args have to be int2. From: Darren King <aixssd!ceodev!darrenk@abs.net> | ||
* | D'Arcy's recent cleanups | Marc G. Fournier | 1996-11-08 |
| | |||
* | Okay...this pretty much cleans out the include files. | Marc G. Fournier | 1996-11-06 |
| | | | | | | | | | | I'm able to get through a 'make' of the backend with no errors except the occasional 'might not be initialized error', which is nothing major, just annoying. Have a few patches from D'Arcy to incorporate, but am waiting until I can get a clean compile first, which I'm hoping to have before bed, or sometime tomorrow. | ||
* | Add prototype for: int DebugFileOpen() | Marc G. Fournier | 1996-11-06 |
| | |||
* | ...same... | Marc G. Fournier | 1996-11-06 |
| | |||
* | One by one, file by file | Marc G. Fournier | 1996-11-06 |
| | |||
* | Another | Marc G. Fournier | 1996-11-06 |
| | |||
* | Getting there, one by one... | Marc G. Fournier | 1996-11-06 |
| | |||
* | And another | Marc G. Fournier | 1996-11-06 |
| | |||
* | another one bites the dust | Marc G. Fournier | 1996-11-06 |
| | |||
* | another gone | Marc G. Fournier | 1996-11-06 |
| | |||
* | Another one cleaned up | Marc G. Fournier | 1996-11-06 |
| | |||
* | Oops, two includes unrequired | Marc G. Fournier | 1996-11-06 |
| | |||
* | Another one bite sthe dust | Marc G. Fournier | 1996-11-06 |
| | |||
* | another include cleaned out | Marc G. Fournier | 1996-11-06 |
| | |||
* | Further include file cleanups | Marc G. Fournier | 1996-11-06 |
| | |||
* | Another one bites the dust | Marc G. Fournier | 1996-11-06 |
| | |||
* | another one quickly done up | Marc G. Fournier | 1996-11-05 |
| | |||
* | clean this one | Marc G. Fournier | 1996-11-05 |
| | |||
* | these ones have their dependencies cleaned up | Marc G. Fournier | 1996-11-05 |
| |