Commit d1080d19 authored by Tom Lane's avatar Tom Lane

Remove freefuncs.c, which hasn't been used in a long time and is not

worth the effort to continue to maintain.  Since freeObject() is not
capable of coping with cases like multiple links to a node, it's
unlikely that it ever will be useful again.  We now have memory
context management that offers a faster and more reliable way of
getting rid of arbitrary node trees (at the cost of having to know
in advance of building the tree that you'll want to get rid of it).
parent feb48f41
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for nodes
# Makefile for backend/nodes
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/nodes/Makefile,v 1.11 2000/05/29 05:44:47 tgl Exp $
# $Header: /cvsroot/pgsql/src/backend/nodes/Makefile,v 1.12 2000/06/29 02:26:23 tgl Exp $
#
#-------------------------------------------------------------------------
......@@ -12,8 +12,8 @@ SRCDIR = ../..
include $(SRCDIR)/Makefile.global
OBJS = nodeFuncs.o nodes.o list.o \
copyfuncs.o equalfuncs.o freefuncs.o makefuncs.o outfuncs.o \
readfuncs.o print.o read.o
copyfuncs.o equalfuncs.o makefuncs.o \
outfuncs.o readfuncs.o print.o read.o
all: SUBSYS.o
......@@ -29,4 +29,3 @@ clean:
ifeq (depend,$(wildcard depend))
include depend
endif
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment