postgresql/src/backend
Vadim B. Mikheev 25eb9e2a66 Avoiding
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
1996-12-14 05:55:27 +00:00
..
access Avoiding 1996-12-14 05:20:39 +00:00
bootstrap Fix bug: -D options implies -d option. 1996-11-22 04:32:41 +00:00
catalog This patch changes quite a few instances of references of Oid's 1996-11-30 18:07:02 +00:00
commands Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFrom 1996-12-14 04:58:20 +00:00
executor Rename postgres95 to PostgreSQL. Add comment for SELECT NULL 1996-12-11 00:28:15 +00:00
lib All external function definitions now have prototypes that are checked. 1996-11-10 03:06:38 +00:00
libpq More stuff to make it compile on various ports. 1996-11-27 08:16:44 +00:00
main Bring in Randy's NOROOT patch 1996-11-14 20:49:09 +00:00
nodes Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King. 1996-12-11 03:18:12 +00:00
optimizer As someone asked for this feature - patch for 1.09 follows. 1996-11-30 17:49:02 +00:00
parser Require seimcolons between statements. 1996-12-11 22:55:53 +00:00
port Fix for BSDI compile. 1996-11-29 04:49:46 +00:00
postmaster Reduce printing from deub level 2 ande layout change. 1996-12-07 04:38:40 +00:00
regex Makefile cleanup after reorganization 1996-11-09 06:24:51 +00:00
rewrite Fix access through null pointer info->rule_action. Thanks Darren King. 1996-11-24 05:58:57 +00:00
storage Change portname "sparc" to "sunos4" and change some portname dependencies to 1996-12-04 03:06:33 +00:00
tcop Reduce printing from debug level 2 ande layout change. 1996-12-07 04:39:38 +00:00
tioga Makefile cleanup after reorganization 1996-11-09 06:24:51 +00:00
utils Avoiding 1996-12-14 05:55:27 +00:00
Makefile First pass at getting shared libraries on AIX properly built. 1996-11-23 09:51:57 +00:00