On Tue, 18 Jul 2006, Nicolai Petri wrote:
If looking at http://www.sai.msu.su/~megera/oddmuse/index.cgi?Hstore the
following is displayed :
-----------------------------------------
License
Stable version, included into PostgreSQL distribution, released under BSD
license. Development version, available from this site, released under the
GNU General Public License, version 2 (June 1991).
-----------------------------------------
But I never found it in my contrib dir - is it just me that overlooked it and
have it been removed or has it never been included ? I would really like it
to be included for ease of installation on linux systems - if pgxs will fix
this so it can be compiled as a "standalone" extension then it is a solution
I can live with.
USE_PGXS=1 make should works with Makefile below
---------------------------------------------
override CPPFLAGS := -I. $(CPPFLAGS)
MODULE_big = hstore
OBJS = hstore_io.o hstore_op.o hstore_gist.o crc32.o
DATA_built = hstore.sql
DOCS = README.hstore
REGRESS = hstore
ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/hstore
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
Best regards,
Nicolai Petri
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly
Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
Sternberg Astronomical Institute, Moscow University, Russia
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(495)939-16-83, +007(495)939-23-83
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match