diff options
| author | Teodor Sigaev <teodor@sigaev.ru> | 2005-06-14 11:45:14 +0000 |
|---|---|---|
| committer | Teodor Sigaev <teodor@sigaev.ru> | 2005-06-14 11:45:14 +0000 |
| commit | 37c839365c566c9e8d7e96cea79e535281144224 (patch) | |
| tree | 33a5094b45c6a6b6549e05e4e2dcf1c63cc69d38 /src/backend/access/gist/Makefile | |
| parent | d6636543c4becc4ba9989af8e5b490e1ee2e7c0e (diff) | |
| download | postgresql-37c839365c566c9e8d7e96cea79e535281144224.tar.gz | |
WAL for GiST. It work for online backup and so on, but on
recovery after crash (power loss etc) it may say that it can't restore
index and index should be reindexed.
Some refactoring code.
Diffstat (limited to 'src/backend/access/gist/Makefile')
| -rw-r--r-- | src/backend/access/gist/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/Makefile b/src/backend/access/gist/Makefile index f2ec10a90a..b22f846a23 100644 --- a/src/backend/access/gist/Makefile +++ b/src/backend/access/gist/Makefile @@ -4,7 +4,7 @@ # Makefile for access/gist # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.12 2003/11/29 19:51:39 pgsql Exp $ +# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.13 2005/06/14 11:45:13 teodor Exp $ # #------------------------------------------------------------------------- @@ -12,7 +12,7 @@ subdir = src/backend/access/gist top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global -OBJS = gist.o gistget.o gistscan.o +OBJS = gist.o gistutil.o gistxlog.o gistget.o gistscan.o all: SUBSYS.o |
