Skip to content

Commit 172eacb

Browse files
committed
Assorted improvements in contrib/hstore.
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
1 parent 1d43e53 commit 172eacb

File tree

12 files changed

+4002
-562
lines changed

12 files changed

+4002
-562
lines changed

contrib/hstore/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.6 2007/11/10 23:59:51 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.7 2009/09/30 19:50:22 tgl Exp $
22

33
subdir = contrib/hstore
44
top_builddir = ../..
55
include $(top_builddir)/src/Makefile.global
66

77
MODULE_big = hstore
8-
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o crc32.o
8+
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \
9+
crc32.o
910

1011
DATA_built = hstore.sql
1112
DATA = uninstall_hstore.sql

0 commit comments

Comments
 (0)