1. 07 Apr, 2000 1 commit
  2. 06 Apr, 2000 4 commits
  3. 05 Apr, 2000 8 commits
  4. 04 Apr, 2000 13 commits
  5. 03 Apr, 2000 3 commits
  6. 02 Apr, 2000 3 commits
  7. 31 Mar, 2000 8 commits
    • Peter Eisentraut's avatar
    • Tom Lane's avatar
      Fix low-probability bug in relcache startup: write_irels wrote the · 14bc951d
      Tom Lane authored
      pg_internal.init file in-place, which meant that if another backend
      started at about the same time, it might read the incomplete file.
      init_irels tries to guard against that, but I have now seen a crash
      due to reading bad data from a partly-written file.  (This may indicate
      a kernel bug on my platform?  Not sure.)  Anyway, clearly the safest
      course is to write the new pg_internal.init file under a unique temporary
      filename, and rename it into place only after it's all written.
      14bc951d
    • Tom Lane's avatar
      Correct typo. · dbc9346f
      Tom Lane authored
      dbc9346f
    • Tom Lane's avatar
      Improve wording a little bit. · 18fd0bda
      Tom Lane authored
      18fd0bda
    • Tom Lane's avatar
      05e92dd5
    • Tom Lane's avatar
      Minor copy-editing. · 5ac4f32f
      Tom Lane authored
      5ac4f32f
    • Tom Lane's avatar
      CREATE AGGREGATE ref page claimed that a noise-word AS was allowed in · 58b48860
      Tom Lane authored
      the syntax ... but gram.y doesn't think so.
      58b48860
    • Bruce Momjian's avatar
      I have tested the beta3 on WinNT and here are the results: · ac70c354
      Bruce Momjian authored
      - I was unable to compile ecpg due to the ":=" instead of "=" in defining
      LIBPQDIR and some other variables in Makefile.global.in
      - pg_id (and also pg_encoding) executable was not removed during "make
      clean" - there was no $(X) appended to the executable name for rm
      - I have added result for int2, int4, float8 and geometry regression tests
              - int2, int2 - yet another message for too large numbers ;-)
              - float8 - it is problably a bug in the newlib C library - it has no
      error message for numbers with exponent -400
              - geometry - differences in precision of float numbers
      - I have added appropriate lines into resultmap file
      - I have modified the script regress.sh to use "case" statement when testing
      the hostname. For cygwin the script is called with "i686-pc-cygwin" (on my
      machine) as a parameter and this was not catched with the "if" statement.
      The check was done for PORTNAME (win) and not HOSTNAME (i.86-pc-cygwin*).
      
      The patch for described modifications is included.
      
      All this modifications can be applied to "current" tree too.
      The compilation was done on CygwinB20.1 with gcc 2.95, cygipc library 1.05.
      The binaries were able to run also on the newest development snapshot
      (2000-03-25).
      
                              Dan
      ac70c354