/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/backend/access/heap/Makefile
28 строк
597 B
Peter Geoghegan
Move heapam_handler.c index scan code to new file.
04 апр 2026, 18:30
04 апр 2026, 18:30
a29fdd6
Код
Авторство
О чём код?
#------------------------------------------------------------------------- # # Makefile-- # Makefile for access/heap # # IDENTIFICATION # src/backend/access/heap/Makefile # #------------------------------------------------------------------------- subdir = src/backend/access/heap top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global OBJS = \ heapam.o \ heapam_handler.o \ heapam_indexscan.o \ heapam_visibility.o \ heapam_xlog.o \ heaptoast.o \ hio.o \ pruneheap.o \ rewriteheap.o \ vacuumlazy.o \ visibilitymap.o include $(top_srcdir)/src/backend/common.mk