1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.

This commit is contained in:
Bruce Momjian
2002-07-30 16:40:34 +00:00
parent 210e64fe08
commit 1dedbf2da5
22 changed files with 14333 additions and 1 deletions

13
contrib/ltree/Makefile Normal file
View File

@ -0,0 +1,13 @@
subdir = contrib/tree
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
PG_CPPFLAGS = -DLOWER_NODE
MODULE_big = ltree
OBJS = ltree_io.o ltree_op.o lquery_op.o _ltree_op.o crc32.o \
ltxtquery_io.o ltxtquery_op.o ltree_gist.o _ltree_gist.o
DATA_built = ltree.sql
DOCS = README.ltree
REGRESS = ltree
include $(top_srcdir)/contrib/contrib-global.mk