- 14 Dec, 1996 6 commits
-
-
Vadim B. Mikheev authored
^ - deleted free(settings->opt.fieldSep);
-
Vadim B. Mikheev authored
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)) {
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
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
-
Vadim B. Mikheev authored
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 ...
-
Vadim B. Mikheev authored
is 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 5 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
Plus: sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.
-
Bryan Henderson authored
-
Marc G. Fournier authored
-
- 09 Dec, 1996 5 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
- 07 Dec, 1996 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 06 Dec, 1996 2 commits
-
-
Vadim B. Mikheev authored
are equal.
-
Vadim B. Mikheev authored
(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.
-
- 04 Dec, 1996 2 commits
-
-
Bruce Momjian authored
-
Bryan Henderson authored
feature dependencies. Thanks Kurt J. Lidl.
-
- 03 Dec, 1996 4 commits
-
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
-
Bruce Momjian authored
-
Bryan Henderson authored
-
- 02 Dec, 1996 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 01 Dec, 1996 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 30 Nov, 1996 1 commit
-
-
Bruce Momjian authored
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
-