1. 19 May, 1999 5 commits
  2. 18 May, 1999 8 commits
  3. 17 May, 1999 21 commits
  4. 16 May, 1999 4 commits
  5. 15 May, 1999 2 commits
    • 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