head	1.7;
access;
symbols
	REL9_0_0:1.7
	REL9_1_ALPHA1:1.7
	REL9_0_RC1:1.7
	REL9_0_BETA4:1.7
	REL9_0_STABLE:1.7.0.10
	REL9_0_BETA3:1.7
	REL9_0_BETA2:1.7
	REL8_2_17:1.2
	REL8_3_11:1.6
	REL8_4_4:1.6
	REL9_0_BETA1:1.7
	REL9_0_ALPHA5_BRANCH:1.7.0.8
	REL9_0_ALPHA5:1.7
	REL8_2_16:1.2
	REL8_3_10:1.6
	REL8_4_3:1.6
	REL9_0_ALPHA4:1.7
	REL9_0_ALPHA4_BRANCH:1.7.0.6
	REL8_5_ALPHA3:1.7
	REL8_5_ALPHA3_BRANCH:1.7.0.4
	REL8_2_15:1.2
	REL8_3_9:1.6
	REL8_4_2:1.6
	REL8_5_ALPHA2:1.7
	REL8_5_ALPHA2_BRANCH:1.7.0.2
	REL8_2_14:1.2
	REL8_3_8:1.6
	REL8_4_1:1.6
	REL8_5_ALPHA1:1.6
	REL8_5_ALPHA1_BRANCH:1.6.0.6
	REL8_4_STABLE:1.6.0.4
	REL8_4_0:1.6
	REL8_4_RC2:1.6
	REL8_4_RC1:1.6
	REL8_4_BETA2:1.6
	REL8_4_BETA1:1.6
	REL8_2_13:1.2
	REL8_3_7:1.6
	REL8_2_12:1.2
	REL8_3_6:1.6
	REL8_2_11:1.2
	REL8_3_5:1.6
	REL8_2_10:1.2
	REL8_3_4:1.6
	REL8_2_9:1.2
	REL8_3_3:1.6
	REL8_2_8:1.2
	REL8_3_2:1.6
	REL8_2_7:1.2
	REL8_3_1:1.6
	REL8_3_STABLE:1.6.0.2
	REL8_3_0:1.6
	REL8_3_RC2:1.6
	REL8_2_6:1.2
	REL8_3_RC1:1.6
	REL8_3_BETA4:1.6
	REL8_3_BETA3:1.6
	REL8_3_BETA2:1.5
	REL8_3_BETA1:1.5
	REL8_2_5:1.2
	REL8_2_4:1.2
	REL8_2_3:1.2
	REL8_2_2:1.2
	REL8_2_1:1.2
	REL8_2_STABLE:1.2.0.2
	REL8_2_0:1.2
	REL8_2_RC1:1.2
	REL8_2_BETA3:1.2
	REL8_2_BETA2:1.2
	REL8_2_BETA1:1.2;
locks; strict;
comment	@# @;


1.7
date	2009.09.30.19.50.22;	author tgl;	state Exp;
branches;
next	1.6;

1.6
date	2007.11.10.23.59.51;	author momjian;	state Exp;
branches;
next	1.5;

1.5
date	2007.03.14.14.21.52;	author teodor;	state Exp;
branches;
next	1.4;

1.4
date	2007.02.09.17.24.33;	author petere;	state Exp;
branches;
next	1.3;

1.3
date	2007.02.09.17.04.00;	author petere;	state Exp;
branches;
next	1.2;

1.2
date	2006.09.12.16.11.44;	author teodor;	state Exp;
branches;
next	1.1;

1.1
date	2006.09.05.18.00.57;	author teodor;	state Exp;
branches;
next	;


desc
@@


1.7
log
@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
@
text
@# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.6 2007/11/10 23:59:51 momjian 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
@


1.6
log
@Remove references to READMEs from /contrib Makefiles.
@
text
@d1 1
a1 1
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.5 2007/03/14 14:21:52 teodor Exp $
d8 2
a9 1
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o crc32.o
@


1.5
log
@Add GIN support for pg_trgm. From Guillaume Smet <guillaume.smet@@gmail.com>
with minor editorization by me.

Hstore improvements
* add operation hstore ? text - excat equivalent of exist()
* remove undocumented behaviour of contains operation with NULL value
* now 'key'::text=>NULL returns '"key"=>NULL' instead of NULL
* Add GIN support for contains and exist operations
* Add GiST support for exist operatiion
* improve regression tests
@
text
@d1 1
a1 1
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.4 2007/02/09 17:24:33 petere Exp $
a11 1
DOCS = README.hstore
@


1.4
log
@Remove useless CPPFLAGS.
@
text
@d1 1
a1 1
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.3 2007/02/09 17:04:00 petere Exp $
d8 1
a8 1
OBJS = hstore_io.o hstore_op.o hstore_gist.o crc32.o
@


1.3
log
@Add $PostgreSQL$ marker to contrib makefiles.
@
text
@d1 1
a1 1
# $PostgreSQL$
a6 3

override CPPFLAGS := -I. $(CPPFLAGS)

@


1.2
log
@Add uninstall script
@
text
@d1 2
a18 2
# DO NOT DELETE

@


1.1
log
@Add hstore contrib module.
Per discussion
http://archives.postgresql.org/pgsql-hackers/2006-08/msg01409.php
@
text
@d12 1
@

