1. 14 Dec, 1996 6 commits
    • Vadim B. Mikheev's avatar
      if (settings->opt.fieldSep); · cbb13157
      Vadim B. Mikheev authored
                                            ^ - deleted
                      free(settings->opt.fieldSep);
      cbb13157
    • Vadim B. Mikheev's avatar
      Avoiding: · 4556a50c
      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)) {
      4556a50c
    • Vadim B. Mikheev's avatar
      14ad4352
    • Vadim B. Mikheev's avatar
      Avoiding · 25eb9e2a
      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
      25eb9e2a
    • Vadim B. Mikheev's avatar
      Avoiding · 02ba3cf8
      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
      ...
      02ba3cf8
    • Vadim B. Mikheev's avatar
      Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFrom · b555822f
      Vadim B. Mikheev authored
      is eliminated (now I can copy 2000000-table from file without memmory
      exhausting).
      b555822f
  2. 13 Dec, 1996 2 commits
  3. 11 Dec, 1996 4 commits
  4. 10 Dec, 1996 5 commits
  5. 09 Dec, 1996 5 commits
  6. 07 Dec, 1996 5 commits
  7. 06 Dec, 1996 2 commits
  8. 04 Dec, 1996 2 commits
  9. 03 Dec, 1996 4 commits
  10. 02 Dec, 1996 2 commits
  11. 01 Dec, 1996 2 commits
  12. 30 Nov, 1996 1 commit
    • Bruce Momjian's avatar
      This patch changes quite a few instances of references of Oid's · 63df35e2
      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
      63df35e2