1. 19 Mar, 1999 2 commits
  2. 18 Mar, 1999 6 commits
  3. 17 Mar, 1999 7 commits
  4. 16 Mar, 1999 8 commits
  5. 15 Mar, 1999 11 commits
  6. 14 Mar, 1999 6 commits
    • Bruce Momjian's avatar
      cleanup · db42533e
      Bruce Momjian authored
      db42533e
    • Bruce Momjian's avatar
      Cleanup · 5d34abc6
      Bruce Momjian authored
      5d34abc6
    • Bruce Momjian's avatar
      d66a44a5
    • Bruce Momjian's avatar
      src/backend/utils/adt/numeric.c fails to compile due to a string having · 8930699c
      Bruce Momjian authored
      an
      embedded new-line character.
      
      
      Billy G. Allie
      8930699c
    • Bruce Momjian's avatar
      This is another example of why not allowing utility functions in SPI · cfb7ed41
      Bruce Momjian authored
      would be a Bad Thing.
      
      For what it's worth, I found another case in libpq where you can get a T
      message without a D that my utility patch needs to handle.  I have
      attached
      the updated patch against the 6.4.2 version of
      src/interfaces/libpq/fe-exec.c
      
      Jerry Gay
      cfb7ed41
    • Bruce Momjian's avatar
      Attempting to insert a value of 'now' into a datetime type · c10e6bcb
      Bruce Momjian authored
      results in a bogus datetime value under AlphaLinux.  (Note that
      the link to submit a port-specific bug on your website is broken)
      
      -Test Case:
      ----------
      testdb=> create table dttest (dt datetime);
      testdb=> insert into dttest values ('now');
      
      --------------------------------------------------------------------------
      
      
      Solution:
      ---------
      The basic problem is the typedefs of AbsoluteTime and RelativeTime,
      which are both 'int32'.  These types appear to be used synonymously
      with the 'time_t' type, which on AlphaLinux is typedef'd as a 'long
      int', which is 64-bits (not 32).  The solution included here fixes
      the datetime type (it now passes the regression test), but does not
      pass the absolute and relative time regression tests.  Presumably, a
      more thorough investigation of how these types are used is warranted.
      The included patch is from the v6.3.2 source, but can be applied to
      the v6.4.2 source.  Please note that there is also a RedHat-specific
      patch distributed with the PostgreSQL source package from RedHat
      that was applied first.
      
      Rich Edwards
      c10e6bcb