Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d544ec8

Browse files
committed
1. full functional WAL for GiST
2. improve vacuum for gist - use FSM - full vacuum: - reforms parent tuple if it's needed ( tuples was deleted on child page or parent tuple remains invalid after crash recovery ) - truncate index file if possible 3. fixes bugs and mistakes
1 parent 0b62bbe commit d544ec8

File tree

11 files changed

+1289
-589
lines changed

11 files changed

+1289
-589
lines changed

src/backend/access/gist/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
# Makefile for access/gist
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.13 2005/06/14 11:45:13 teodor Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.14 2005/06/20 10:29:36 teodor Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
subdir = src/backend/access/gist
1212
top_builddir = ../../../..
1313
include $(top_builddir)/src/Makefile.global
1414

15-
OBJS = gist.o gistutil.o gistxlog.o gistget.o gistscan.o
15+
OBJS = gist.o gistutil.o gistxlog.o gistvacuum.o gistget.o gistscan.o
1616

1717
all: SUBSYS.o
1818

0 commit comments

Comments
 (0)