Skip to content
Snippets Groups Projects
  1. May 16, 1999
    • Tom Lane's avatar
      Undo collateral damage from recent patch: Makefile had · cf11642e
      Tom Lane authored
      lost most of target list and thus 'make clean' didn't clean up very well.
      cf11642e
    • Tom Lane's avatar
      Change iostream to iostream.h, strstream to strstream.h · bbf37483
      Tom Lane authored
      for compatibility with older C++ libraries.
      bbf37483
    • Bruce Momjian's avatar
      I made it so it rolled over files at 1MB. My table ended up with 120 · 2132e062
      Bruce Momjian authored
      segments, and my indexes had 3(Yes, it DOES work!).
      DROP TABLE removed ALL segments from the table, but only the main index
      segment.
      
      So it looks like removing the table itself is using mdunlink in md.c,
      while removing indexes uses FileNameUnlink() which only unlinks 1 file.
      As far as I can tell, calling FileNameUnlink() and mdunlink() is basically
      the same, except mdunlink() deletes any extra segments.
      
      I've done some testing and it seems to work.  It also passes regression
      tests(except float8, geometry and rules, but that's normal).
      
      If this patch is right, this fixes all known multi-segment problems on
      Linux.
      
      Ole Gjerde
      2132e062
    • Bruce Momjian's avatar
      I've got 2 pretty small patches. · de81fbd0
      Bruce Momjian authored
      configtype.patch simply fixes a typo in config.h.in
      pg_dump.c.patch Updates a bunch of error messages to include a reason
      from
                      the backend, and also removes a couple of unnecessary
      if's
      
      Ole Gjerde
      de81fbd0
  2. May 14, 1999
  3. May 13, 1999
  4. May 12, 1999
  5. May 11, 1999
  6. May 10, 1999
Loading