mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
When building a GiST index that doesn't fit in cache, buffers are attached to some internal nodes in the index. This speeds up the build by avoiding random I/O that would otherwise be needed to traverse all the way down the tree to the find right leaf page for tuple. Alexander Korotkov
19 lines
538 B
Makefile
19 lines
538 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for access/gist
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/access/gist/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/access/gist
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = gist.o gistutil.o gistxlog.o gistvacuum.o gistget.o gistscan.o \
|
|
gistproc.o gistsplit.o gistbuild.o gistbuildbuffers.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|