mirror of
https://github.com/postgres/postgres.git
synced 2025-11-15 03:41:20 +03:00
The contents of an unlogged table are WAL-logged; thus, they are not available on standby servers and are truncated whenever the database system enters recovery. Indexes on unlogged tables are also unlogged. Unlogged GiST indexes are not currently supported.
18 lines
449 B
Makefile
18 lines
449 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for storage/file
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/storage/file/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/storage/file
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = fd.o buffile.o copydir.o reinit.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|