- 26 Dec, 1996 6 commits
- 
- 
Bruce Momjian authoredDarren King. 
- 
Bruce Momjian authoredprobably a bug. To find code added/modifyied, search "Fixed". Gianluca Puggelli 
- 
Bruce Momjian authored%ud in a printf format strings instead of just %u. There were three occurances of this in catalog_utils.c, two in parser.c and one in rewriteSupport.c in the oid patch that I submitted and was applied. They won't crash anything, but the error messages will have a 'd' after the Oid. Annoying, but none are db-threatening. Sorry about that folks...I'll be more careful in the future... Darren King 
- 
Bruce Momjian authoredare three SearchSysCacheTuple(PRONAME,...) calls that use three different macros to convert the typeId array of Oids. Darren King 
- 
Bruce Momjian authoredAs an example I sent a bug-report on 26 Nov to tell that the fix included below is necessary to compile pg95-current on Ultrix with Digital's standard C compiler c89. In fact I think that this fix is needed for any C compiler sticking very close the standard, see my discussion in the original bug report. Erik Bertelsen 
- 
Bruce Momjian authored
 
- 
- 24 Dec, 1996 1 commit
- 
- 
Bryan Henderson authored
 
- 
- 23 Dec, 1996 3 commits
- 
- 
Bryan Henderson authored
- 
Bryan Henderson authored
- 
Bryan Henderson authored
 
- 
- 20 Dec, 1996 4 commits
- 
- 
Bruce Momjian authored
- 
Bruce Momjian authored
- 
Bruce Momjian authored
- 
Bruce Momjian authored
 
- 
- 19 Dec, 1996 6 commits
- 
- 
Bryan Henderson authored
- 
Marc G. Fournier authoredFrom: Massimo Dal Zotto <dz@cs.unitn.it> 
- 
Marc G. Fournier authored
- 
Marc G. Fournier authoredSubmitted by: Massimo Dal Zotto <dz@cs.unitn.it> 
- 
Marc G. Fournier authoredSubmitted by: Massimo Dal Zotto <dz@cs.unitn.it> 
- 
Marc G. Fournier authoredSubmitted by: Massimo Dal Zotto <dz@cs.unitn.it> 
 
- 
- 17 Dec, 1996 1 commit
- 
- 
Bruce Momjian authored
 
- 
- 16 Dec, 1996 1 commit
- 
- 
Bryan Henderson authored
 
- 
- 15 Dec, 1996 2 commits
- 
- 
Bryan Henderson authored
- 
Bryan Henderson authored
 
- 
- 14 Dec, 1996 7 commits
- 
- 
Vadim B. Mikheev authoredExcuse me. 
- 
Vadim B. Mikheev authored^ - deleted free(settings->opt.fieldSep);
- 
Vadim B. Mikheev authoredcc1: 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)) {
- 
Vadim B. Mikheev authored
- 
Vadim B. Mikheev authoredcc1: 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
- 
Vadim B. Mikheev authoredcc1: 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 ... 
- 
Vadim B. Mikheev authoredis eliminated (now I can copy 2000000-table from file without memmory exhausting). 
 
- 
- 13 Dec, 1996 2 commits
- 
- 
Bryan Henderson authored
- 
Bruce Momjian authored
 
- 
- 11 Dec, 1996 4 commits
- 
- 
Bruce Momjian authored
- 
Bruce Momjian authored
- 
Bryan Henderson authored
- 
Bruce Momjian authored
 
- 
- 10 Dec, 1996 3 commits
- 
- 
Bryan Henderson authored
- 
Bryan Henderson authored
- 
Bryan Henderson authoredPlus: sigjmp_buf/jmp_buf is backwards, so backend doesn't compile. 
 
-