postgresql/src/backend/access/gist
Teodor Sigaev e8cab5fe49 Concurrency for GiST
- full concurrency for insert/update/select/vacuum:
        - select and vacuum never locks more than one page simultaneously
        - select (gettuple) hasn't any lock across it's calls
        - insert never locks more than two page simultaneously:
                - during search of leaf to insert it locks only one page
                  simultaneously
                - while walk upward to the root it locked only parent (may be
                  non-direct parent) and child. One of them X-lock, another may
                  be S- or X-lock
- 'vacuum full' locks index
- improve gistgetmulti
- simplify XLOG records

Fix bug in index_beginscan_internal: LockRelation may clean
  rd_aminfo structure, so move GET_REL_PROCEDURE after LockRelation
2005-06-27 12:45:23 +00:00
..
Makefile 1. full functional WAL for GiST 2005-06-20 10:29:37 +00:00
gist.c Concurrency for GiST 2005-06-27 12:45:23 +00:00
gistget.c Concurrency for GiST 2005-06-27 12:45:23 +00:00
gistscan.c Concurrency for GiST 2005-06-27 12:45:23 +00:00
gistutil.c Concurrency for GiST 2005-06-27 12:45:23 +00:00
gistvacuum.c Concurrency for GiST 2005-06-27 12:45:23 +00:00
gistxlog.c Concurrency for GiST 2005-06-27 12:45:23 +00:00