aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Remove NOTIFY_PATCH.Bruce Momjian1996-12-20
|
* Improve handling of semicolons ending statements.Bruce Momjian1996-12-20
|
* Rename parameter.Bruce Momjian1996-12-20
|
* Make sure user is running GNU make.Bryan Henderson1996-12-19
|
* Add two new comments to pglibtcl...Marc G. Fournier1996-12-19
| | | | From: Massimo Dal Zotto <dz@cs.unitn.it>
* More patches/documentation from: Massimo Dal Zotto <dz@cs.unitn.it>Marc G. Fournier1996-12-19
|
* COPY_PATCH...Marc G. Fournier1996-12-19
| | | | Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Add various comments to explain #define's and add a few extra #define'sMarc G. Fournier1996-12-19
| | | | Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* #ifdef ASYNC_DEBUG various sections of async.cMarc G. Fournier1996-12-19
| | | | Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Make GROUP BY work with aliases, ORDER BY with column numbersBruce Momjian1996-12-17
|
* Put sys/types.h before sys/timeb.h so Ultrix compiles.Bryan Henderson1996-12-16
|
* Remove __P macro usage so it compiles without cdefs.h.Bryan Henderson1996-12-15
|
* Make compile on AIX, Alpha OSF. Thanks Darren King, Igor Notanzon.Bryan Henderson1996-12-15
|
* Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.Vadim B. Mikheev1996-12-14
| | | | Excuse me.
* if (settings->opt.fieldSep);Vadim B. Mikheev1996-12-14
| | | | | ^ - deleted free(settings->opt.fieldSep);
* Avoiding:Vadim B. Mikheev1996-12-14
| | | | | | | | | | | | | | | cc1: warnings being treated as errors datum.c: In function `DatumGetSize': datum.c:57: warning: unsigned value >= 0 is always 1 gmake[3]: *** [datum.o] Error 1 There was: if (byVal) { if (len >= 0 && len <= sizeof(Datum)) { but len has type Size (unsigned int) and so now there is: if (byVal) { if (len <= sizeof(Datum)) {
* const register ... --> register const ...Vadim B. Mikheev1996-12-14
|
* AvoidingVadim B. Mikheev1996-12-14
| | | | | | | | | | | | | | cc1: warnings being treated as errors exc.c: In function 'ExcRaise': exc.c:186: warning: passing arg 1 of 'Longjmp' from incompatible pointer type gmake[3]: *** [exc.o] Error 1 Now we have: #if defined (JMP_BUF) longjmp(efp->context, 1); #else siglongjmp(efp->context, 1); #endif
* AvoidingVadim B. Mikheev1996-12-14
| | | | | | | | cc1: warnings being treated as errors transsup.c: In function `TransBlockGetLastTransactionIdStatus': transsup.c:122: warning: unsigned value >= 0 is always 1 gmake[3]: *** [transsup.o] Error 1 ...
* Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFromVadim B. Mikheev1996-12-14
| | | | | is eliminated (now I can copy 2000000-table from file without memmory exhausting).
* Clean up. Get rid of tabs and overly long lines.Bryan Henderson1996-12-13
|
* Small regression and doc patchBruce Momjian1996-12-13
|
* Postgres95 to PostgreSQL.Bruce Momjian1996-12-11
|
* Require seimcolons between statements.Bruce Momjian1996-12-11
|
* Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King.Bryan Henderson1996-12-11
|
* Rename postgres95 to PostgreSQL. Add comment for SELECT NULLBruce Momjian1996-12-11
|
* Fix bug: libpq clients (which include libpq-fe.h) won't compile.Bryan Henderson1996-12-10
|
* sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.Bryan Henderson1996-12-10
|
* 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.
* Add empty "dep:" target.Bryan Henderson1996-12-10
|
* No change...just a test to make sure I didn't screw anything upMarc G. Fournier1996-12-10
|
* Monitor has been obsoleted by psql.Bryan Henderson1996-12-09
|
* Remove include of libpq-fe.h. This file has nothing to do with libpq.Bryan Henderson1996-12-09
|
* Add comments defining "typelem" column of pg_type.Bryan Henderson1996-12-09
|
* Add comments describing interface to heap_getattr().Bryan Henderson1996-12-09
|
* Add CUSTOM_CC variable for Makefile.custom. Thanks Kurt Lidl.Bryan Henderson1996-12-09
|
* Reduce printing from debug level 2 ande layout change.Bruce Momjian1996-12-07
|
* Reduce printing from deub level 2 ande layout change.Bruce Momjian1996-12-07
|
* Remove Dan's fix of SELECT NULL to fix INSERT NULL.Bruce Momjian1996-12-07
|
* Fix for SELECT NULL.Bruce Momjian1996-12-07
|
* Fix from Jan agreed with by Massimo.Bruce Momjian1996-12-07
|
* _bt_updateitem is returned in code, but works only if sizes of keysVadim B. Mikheev1996-12-06
| | | | are equal.
* 1. _bt_compare fixed to work properly with new code in _bt_insertonpgVadim B. Mikheev1996-12-06
| | | | | | | | (old _bt_compare always returned >= 0 while comparing with P_HIKEY on root page - it breaks root page when _bt_insertonpg tries insert new minimal key into root page). 2. Fixed bug concerns "empty" pages: non-rightmost pages with only P_HIKEY present on it. Such pages appear after vacuum.
* Remove duplicate patch for COUNT fix.Bruce Momjian1996-12-04
|
* Change portname "sparc" to "sunos4" and change some portname dependencies toBryan Henderson1996-12-04
| | | | feature dependencies. Thanks Kurt J. Lidl.
* Change tests to lowercase for esthetics.Bruce Momjian1996-12-03
|
* pname=NULL -> pname="" (stringinfo.c:appendStringInfo doesn't like NULL).Vadim B. Mikheev1996-12-03
|
* Make COUNT,SUM case insensitive.Bruce Momjian1996-12-03
|
* Remove #if defined(bsdi) define SIGJMP_BUF, per Kurt Lidl.Bryan Henderson1996-12-03
|
* Reduce regression diffsBruce Momjian1996-12-02
|