]> granicus.if.org Git - postgresql/commit
I made it so it rolled over files at 1MB. My table ended up with 120
authorBruce Momjian <bruce@momjian.us>
Sat, 15 May 1999 22:31:07 +0000 (22:31 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 15 May 1999 22:31:07 +0000 (22:31 +0000)
commit2132e062e1732d4a8b975cbbce3beb7e083b7979
treea7dc077277ef1a1a2b5ee4ca1b1dc5b92630426f
parentde81fbd047a031321903f390a3274fdf49d872ce
I made it so it rolled over files at 1MB.  My table ended up with 120
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
src/backend/catalog/index.c