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

Commit 91c7b7a

Browse files
committed
Add inmem handler
1 parent ca266a0 commit 91c7b7a

File tree

6 files changed

+808
-8
lines changed

6 files changed

+808
-8
lines changed

src/backend/access/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ top_builddir = ../../..
99
include $(top_builddir)/src/Makefile.global
1010

1111
SUBDIRS = brin common gin gist hash heap index nbtree rmgrdesc spgist \
12-
table tablesample transam
12+
table tablesample transam immem
1313

1414
include $(top_srcdir)/src/backend/common.mk

src/backend/access/inmem/Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile--
4+
# Makefile for access/inmem
5+
#
6+
# IDENTIFICATION
7+
# src/backend/access/inmem/Makefile
8+
#
9+
#-------------------------------------------------------------------------
10+
11+
subdir = src/backend/access/inmem
12+
top_builddir = ../../../..
13+
include $(top_builddir)/src/Makefile.global
14+
15+
OBJS = inmem_handler.o
16+
17+
include $(top_srcdir)/src/backend/common.mk

0 commit comments

Comments
 (0)