mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
172eacba43
Remove the 64K limit on the lengths of keys and values within an hstore. (This changes the on-disk format, but the old format can still be read.) Add support for btree/hash opclasses for hstore --- this is not so much for actual indexing purposes as to allow use of GROUP BY, DISTINCT, etc. Add various other new functions and operators. Andrew Gierth
16 lines
396 B
Makefile
16 lines
396 B
Makefile
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.7 2009/09/30 19:50:22 tgl Exp $
|
|
|
|
subdir = contrib/hstore
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = hstore
|
|
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \
|
|
crc32.o
|
|
|
|
DATA_built = hstore.sql
|
|
DATA = uninstall_hstore.sql
|
|
REGRESS = hstore
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|