-
- Downloads
Create a routine PageIndexMultiDelete() that replaces a loop around
PageIndexTupleDelete() with a single pass of compactification --- logic mostly lifted from PageRepairFragmentation. I noticed while profiling that a VACUUM that's cleaning up a whole lot of deleted tuples would spend as much as a third of its CPU time in PageIndexTupleDelete; not too surprising considering the loop method was roughly O(N^2) in the number of tuples involved.
Showing
- src/backend/access/nbtree/nbtpage.c 3 additions, 8 deletionssrc/backend/access/nbtree/nbtpage.c
- src/backend/access/nbtree/nbtxlog.c 2 additions, 7 deletionssrc/backend/access/nbtree/nbtxlog.c
- src/backend/storage/page/bufpage.c 137 additions, 3 deletionssrc/backend/storage/page/bufpage.c
- src/include/storage/bufpage.h 2 additions, 1 deletionsrc/include/storage/bufpage.h
Loading
Please register or sign in to comment